relay.c 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887
  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-2008, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /* $Id$ */
  7. const char relay_c_id[] =
  8. "$Id$";
  9. /**
  10. * \file relay.c
  11. * \brief Handle relay cell encryption/decryption, plus packaging and
  12. * receiving from circuits, plus queueing on circuits.
  13. **/
  14. #include "or.h"
  15. #include "mempool.h"
  16. static int relay_crypt(circuit_t *circ, cell_t *cell,
  17. cell_direction_t cell_direction,
  18. crypt_path_t **layer_hint, char *recognized);
  19. static edge_connection_t *relay_lookup_conn(circuit_t *circ, cell_t *cell,
  20. cell_direction_t cell_direction,
  21. crypt_path_t *layer_hint);
  22. static int
  23. connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ,
  24. edge_connection_t *conn,
  25. crypt_path_t *layer_hint);
  26. static void
  27. circuit_consider_sending_sendme(circuit_t *circ, crypt_path_t *layer_hint);
  28. static void
  29. circuit_resume_edge_reading(circuit_t *circ, crypt_path_t *layer_hint);
  30. static int
  31. circuit_resume_edge_reading_helper(edge_connection_t *conn,
  32. circuit_t *circ,
  33. crypt_path_t *layer_hint);
  34. static int
  35. circuit_consider_stop_edge_reading(circuit_t *circ, crypt_path_t *layer_hint);
  36. /** Stats: how many relay cells have originated at this hop, or have
  37. * been relayed onward (not recognized at this hop)?
  38. */
  39. uint64_t stats_n_relay_cells_relayed = 0;
  40. /** Stats: how many relay cells have been delivered to streams at this
  41. * hop?
  42. */
  43. uint64_t stats_n_relay_cells_delivered = 0;
  44. /** Update digest from the payload of cell. Assign integrity part to
  45. * cell.
  46. */
  47. static void
  48. relay_set_digest(crypto_digest_env_t *digest, cell_t *cell)
  49. {
  50. char integrity[4];
  51. relay_header_t rh;
  52. crypto_digest_add_bytes(digest, cell->payload, CELL_PAYLOAD_SIZE);
  53. crypto_digest_get_digest(digest, integrity, 4);
  54. // log_fn(LOG_DEBUG,"Putting digest of %u %u %u %u into relay cell.",
  55. // integrity[0], integrity[1], integrity[2], integrity[3]);
  56. relay_header_unpack(&rh, cell->payload);
  57. memcpy(rh.integrity, integrity, 4);
  58. relay_header_pack(cell->payload, &rh);
  59. }
  60. /** Does the digest for this circuit indicate that this cell is for us?
  61. *
  62. * Update digest from the payload of cell (with the integrity part set
  63. * to 0). If the integrity part is valid, return 1, else restore digest
  64. * and cell to their original state and return 0.
  65. */
  66. static int
  67. relay_digest_matches(crypto_digest_env_t *digest, cell_t *cell)
  68. {
  69. char received_integrity[4], calculated_integrity[4];
  70. relay_header_t rh;
  71. crypto_digest_env_t *backup_digest=NULL;
  72. backup_digest = crypto_digest_dup(digest);
  73. relay_header_unpack(&rh, cell->payload);
  74. memcpy(received_integrity, rh.integrity, 4);
  75. memset(rh.integrity, 0, 4);
  76. relay_header_pack(cell->payload, &rh);
  77. // log_fn(LOG_DEBUG,"Reading digest of %u %u %u %u from relay cell.",
  78. // received_integrity[0], received_integrity[1],
  79. // received_integrity[2], received_integrity[3]);
  80. crypto_digest_add_bytes(digest, cell->payload, CELL_PAYLOAD_SIZE);
  81. crypto_digest_get_digest(digest, calculated_integrity, 4);
  82. if (memcmp(received_integrity, calculated_integrity, 4)) {
  83. // log_fn(LOG_INFO,"Recognized=0 but bad digest. Not recognizing.");
  84. // (%d vs %d).", received_integrity, calculated_integrity);
  85. /* restore digest to its old form */
  86. crypto_digest_assign(digest, backup_digest);
  87. /* restore the relay header */
  88. memcpy(rh.integrity, received_integrity, 4);
  89. relay_header_pack(cell->payload, &rh);
  90. crypto_free_digest_env(backup_digest);
  91. return 0;
  92. }
  93. crypto_free_digest_env(backup_digest);
  94. return 1;
  95. }
  96. /** Apply <b>cipher</b> to CELL_PAYLOAD_SIZE bytes of <b>in</b>
  97. * (in place).
  98. *
  99. * If <b>encrypt_mode</b> is 1 then encrypt, else decrypt.
  100. *
  101. * Return -1 if the crypto fails, else return 0.
  102. */
  103. static int
  104. relay_crypt_one_payload(crypto_cipher_env_t *cipher, char *in,
  105. int encrypt_mode)
  106. {
  107. int r;
  108. (void)encrypt_mode;
  109. r = crypto_cipher_crypt_inplace(cipher, in, CELL_PAYLOAD_SIZE);
  110. if (r) {
  111. log_warn(LD_BUG,"Error during relay encryption");
  112. return -1;
  113. }
  114. return 0;
  115. }
  116. /** Receive a relay cell:
  117. * - Crypt it (encrypt if headed toward the origin or if we <b>are</b> the
  118. * origin; decrypt if we're headed toward the exit).
  119. * - Check if recognized (if exitward).
  120. * - If recognized and the digest checks out, then find if there's a stream
  121. * that the cell is intended for, and deliver it to the right
  122. * connection_edge.
  123. * - If not recognized, then we need to relay it: append it to the appropriate
  124. * cell_queue on <b>circ</b>.
  125. *
  126. * Return -<b>reason</b> on failure.
  127. */
  128. int
  129. circuit_receive_relay_cell(cell_t *cell, circuit_t *circ,
  130. cell_direction_t cell_direction)
  131. {
  132. or_connection_t *or_conn=NULL;
  133. crypt_path_t *layer_hint=NULL;
  134. char recognized=0;
  135. int reason;
  136. tor_assert(cell);
  137. tor_assert(circ);
  138. tor_assert(cell_direction == CELL_DIRECTION_OUT ||
  139. cell_direction == CELL_DIRECTION_IN);
  140. if (circ->marked_for_close)
  141. return 0;
  142. if (relay_crypt(circ, cell, cell_direction, &layer_hint, &recognized) < 0) {
  143. log_warn(LD_BUG,"relay crypt failed. Dropping connection.");
  144. return -END_CIRC_REASON_INTERNAL;
  145. }
  146. if (recognized) {
  147. edge_connection_t *conn = relay_lookup_conn(circ, cell, cell_direction,
  148. layer_hint);
  149. if (cell_direction == CELL_DIRECTION_OUT) {
  150. ++stats_n_relay_cells_delivered;
  151. log_debug(LD_OR,"Sending away from origin.");
  152. if ((reason=connection_edge_process_relay_cell(cell, circ, conn, NULL))
  153. < 0) {
  154. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  155. "connection_edge_process_relay_cell (away from origin) "
  156. "failed.");
  157. return reason;
  158. }
  159. }
  160. if (cell_direction == CELL_DIRECTION_IN) {
  161. ++stats_n_relay_cells_delivered;
  162. log_debug(LD_OR,"Sending to origin.");
  163. if ((reason = connection_edge_process_relay_cell(cell, circ, conn,
  164. layer_hint)) < 0) {
  165. log_warn(LD_OR,
  166. "connection_edge_process_relay_cell (at origin) failed.");
  167. return reason;
  168. }
  169. }
  170. return 0;
  171. }
  172. /* not recognized. pass it on. */
  173. if (cell_direction == CELL_DIRECTION_OUT) {
  174. cell->circ_id = circ->n_circ_id; /* switch it */
  175. or_conn = circ->n_conn;
  176. } else if (! CIRCUIT_IS_ORIGIN(circ)) {
  177. cell->circ_id = TO_OR_CIRCUIT(circ)->p_circ_id; /* switch it */
  178. or_conn = TO_OR_CIRCUIT(circ)->p_conn;
  179. } else {
  180. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  181. "Dropping unrecognized inbound cell on origin circuit.");
  182. return 0;
  183. }
  184. if (!or_conn) {
  185. // XXXX Can this splice stuff be done more cleanly?
  186. if (! CIRCUIT_IS_ORIGIN(circ) &&
  187. TO_OR_CIRCUIT(circ)->rend_splice &&
  188. cell_direction == CELL_DIRECTION_OUT) {
  189. or_circuit_t *splice = TO_OR_CIRCUIT(circ)->rend_splice;
  190. tor_assert(circ->purpose == CIRCUIT_PURPOSE_REND_ESTABLISHED);
  191. tor_assert(splice->_base.purpose == CIRCUIT_PURPOSE_REND_ESTABLISHED);
  192. cell->circ_id = splice->p_circ_id;
  193. if ((reason = circuit_receive_relay_cell(cell, TO_CIRCUIT(splice),
  194. CELL_DIRECTION_IN)) < 0) {
  195. log_warn(LD_REND, "Error relaying cell across rendezvous; closing "
  196. "circuits");
  197. /* XXXX Do this here, or just return -1? */
  198. circuit_mark_for_close(circ, -reason);
  199. return reason;
  200. }
  201. return 0;
  202. }
  203. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  204. "Didn't recognize cell, but circ stops here! Closing circ.");
  205. return -END_CIRC_REASON_TORPROTOCOL;
  206. }
  207. log_debug(LD_OR,"Passing on unrecognized cell.");
  208. ++stats_n_relay_cells_relayed; /* XXXX no longer quite accurate {cells}
  209. * we might kill the circ before we relay
  210. * the cells. */
  211. append_cell_to_circuit_queue(circ, or_conn, cell, cell_direction);
  212. return 0;
  213. }
  214. /** Do the appropriate en/decryptions for <b>cell</b> arriving on
  215. * <b>circ</b> in direction <b>cell_direction</b>.
  216. *
  217. * If cell_direction == CELL_DIRECTION_IN:
  218. * - If we're at the origin (we're the OP), for hops 1..N,
  219. * decrypt cell. If recognized, stop.
  220. * - Else (we're not the OP), encrypt one hop. Cell is not recognized.
  221. *
  222. * If cell_direction == CELL_DIRECTION_OUT:
  223. * - decrypt one hop. Check if recognized.
  224. *
  225. * If cell is recognized, set *recognized to 1, and set
  226. * *layer_hint to the hop that recognized it.
  227. *
  228. * Return -1 to indicate that we should mark the circuit for close,
  229. * else return 0.
  230. */
  231. static int
  232. relay_crypt(circuit_t *circ, cell_t *cell, cell_direction_t cell_direction,
  233. crypt_path_t **layer_hint, char *recognized)
  234. {
  235. relay_header_t rh;
  236. tor_assert(circ);
  237. tor_assert(cell);
  238. tor_assert(recognized);
  239. tor_assert(cell_direction == CELL_DIRECTION_IN ||
  240. cell_direction == CELL_DIRECTION_OUT);
  241. if (cell_direction == CELL_DIRECTION_IN) {
  242. if (CIRCUIT_IS_ORIGIN(circ)) { /* We're at the beginning of the circuit.
  243. * We'll want to do layered decrypts. */
  244. crypt_path_t *thishop, *cpath = TO_ORIGIN_CIRCUIT(circ)->cpath;
  245. thishop = cpath;
  246. if (thishop->state != CPATH_STATE_OPEN) {
  247. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  248. "Relay cell before first created cell? Closing.");
  249. return -1;
  250. }
  251. do { /* Remember: cpath is in forward order, that is, first hop first. */
  252. tor_assert(thishop);
  253. if (relay_crypt_one_payload(thishop->b_crypto, cell->payload, 0) < 0)
  254. return -1;
  255. relay_header_unpack(&rh, cell->payload);
  256. if (rh.recognized == 0) {
  257. /* it's possibly recognized. have to check digest to be sure. */
  258. if (relay_digest_matches(thishop->b_digest, cell)) {
  259. *recognized = 1;
  260. *layer_hint = thishop;
  261. return 0;
  262. }
  263. }
  264. thishop = thishop->next;
  265. } while (thishop != cpath && thishop->state == CPATH_STATE_OPEN);
  266. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  267. "Incoming cell at client not recognized. Closing.");
  268. return -1;
  269. } else { /* we're in the middle. Just one crypt. */
  270. if (relay_crypt_one_payload(TO_OR_CIRCUIT(circ)->p_crypto,
  271. cell->payload, 1) < 0)
  272. return -1;
  273. // log_fn(LOG_DEBUG,"Skipping recognized check, because we're not "
  274. // "the client.");
  275. }
  276. } else /* cell_direction == CELL_DIRECTION_OUT */ {
  277. /* we're in the middle. Just one crypt. */
  278. if (relay_crypt_one_payload(TO_OR_CIRCUIT(circ)->n_crypto,
  279. cell->payload, 0) < 0)
  280. return -1;
  281. relay_header_unpack(&rh, cell->payload);
  282. if (rh.recognized == 0) {
  283. /* it's possibly recognized. have to check digest to be sure. */
  284. if (relay_digest_matches(TO_OR_CIRCUIT(circ)->n_digest, cell)) {
  285. *recognized = 1;
  286. return 0;
  287. }
  288. }
  289. }
  290. return 0;
  291. }
  292. /** Package a relay cell from an edge:
  293. * - Encrypt it to the right layer
  294. * - Append it to the appropriate cell_queue on <b>circ</b>.
  295. */
  296. static int
  297. circuit_package_relay_cell(cell_t *cell, circuit_t *circ,
  298. cell_direction_t cell_direction,
  299. crypt_path_t *layer_hint)
  300. {
  301. or_connection_t *conn; /* where to send the cell */
  302. if (cell_direction == CELL_DIRECTION_OUT) {
  303. crypt_path_t *thishop; /* counter for repeated crypts */
  304. conn = circ->n_conn;
  305. if (!CIRCUIT_IS_ORIGIN(circ) || !conn) {
  306. log_warn(LD_BUG,"outgoing relay cell has n_conn==NULL. Dropping.");
  307. return 0; /* just drop it */
  308. }
  309. relay_set_digest(layer_hint->f_digest, cell);
  310. thishop = layer_hint;
  311. /* moving from farthest to nearest hop */
  312. do {
  313. tor_assert(thishop);
  314. /* XXXX RD This is a bug, right? */
  315. log_debug(LD_OR,"crypting a layer of the relay cell.");
  316. if (relay_crypt_one_payload(thishop->f_crypto, cell->payload, 1) < 0) {
  317. return -1;
  318. }
  319. thishop = thishop->prev;
  320. } while (thishop != TO_ORIGIN_CIRCUIT(circ)->cpath->prev);
  321. } else { /* incoming cell */
  322. or_circuit_t *or_circ;
  323. if (CIRCUIT_IS_ORIGIN(circ)) {
  324. /* We should never package an _incoming_ cell from the circuit
  325. * origin; that means we messed up somewhere. */
  326. log_warn(LD_BUG,"incoming relay cell at origin circuit. Dropping.");
  327. assert_circuit_ok(circ);
  328. return 0; /* just drop it */
  329. }
  330. or_circ = TO_OR_CIRCUIT(circ);
  331. conn = or_circ->p_conn;
  332. relay_set_digest(or_circ->p_digest, cell);
  333. if (relay_crypt_one_payload(or_circ->p_crypto, cell->payload, 1) < 0)
  334. return -1;
  335. }
  336. ++stats_n_relay_cells_relayed;
  337. append_cell_to_circuit_queue(circ, conn, cell, cell_direction);
  338. return 0;
  339. }
  340. /** If cell's stream_id matches the stream_id of any conn that's
  341. * attached to circ, return that conn, else return NULL.
  342. */
  343. static edge_connection_t *
  344. relay_lookup_conn(circuit_t *circ, cell_t *cell,
  345. cell_direction_t cell_direction, crypt_path_t *layer_hint)
  346. {
  347. edge_connection_t *tmpconn;
  348. relay_header_t rh;
  349. relay_header_unpack(&rh, cell->payload);
  350. if (!rh.stream_id)
  351. return NULL;
  352. /* IN or OUT cells could have come from either direction, now
  353. * that we allow rendezvous *to* an OP.
  354. */
  355. if (CIRCUIT_IS_ORIGIN(circ)) {
  356. for (tmpconn = TO_ORIGIN_CIRCUIT(circ)->p_streams; tmpconn;
  357. tmpconn=tmpconn->next_stream) {
  358. if (rh.stream_id == tmpconn->stream_id &&
  359. !tmpconn->_base.marked_for_close &&
  360. tmpconn->cpath_layer == layer_hint) {
  361. log_debug(LD_APP,"found conn for stream %d.", rh.stream_id);
  362. return tmpconn;
  363. }
  364. }
  365. } else {
  366. for (tmpconn = TO_OR_CIRCUIT(circ)->n_streams; tmpconn;
  367. tmpconn=tmpconn->next_stream) {
  368. if (rh.stream_id == tmpconn->stream_id &&
  369. !tmpconn->_base.marked_for_close) {
  370. log_debug(LD_EXIT,"found conn for stream %d.", rh.stream_id);
  371. if (cell_direction == CELL_DIRECTION_OUT ||
  372. connection_edge_is_rendezvous_stream(tmpconn))
  373. return tmpconn;
  374. }
  375. }
  376. for (tmpconn = TO_OR_CIRCUIT(circ)->resolving_streams; tmpconn;
  377. tmpconn=tmpconn->next_stream) {
  378. if (rh.stream_id == tmpconn->stream_id &&
  379. !tmpconn->_base.marked_for_close) {
  380. log_debug(LD_EXIT,"found conn for stream %d.", rh.stream_id);
  381. return tmpconn;
  382. }
  383. }
  384. }
  385. return NULL; /* probably a begin relay cell */
  386. }
  387. /** Pack the relay_header_t host-order structure <b>src</b> into
  388. * network-order in the buffer <b>dest</b>. See tor-spec.txt for details
  389. * about the wire format.
  390. */
  391. void
  392. relay_header_pack(char *dest, const relay_header_t *src)
  393. {
  394. *(uint8_t*)(dest) = src->command;
  395. set_uint16(dest+1, htons(src->recognized));
  396. set_uint16(dest+3, htons(src->stream_id));
  397. memcpy(dest+5, src->integrity, 4);
  398. set_uint16(dest+9, htons(src->length));
  399. }
  400. /** Unpack the network-order buffer <b>src</b> into a host-order
  401. * relay_header_t structure <b>dest</b>.
  402. */
  403. void
  404. relay_header_unpack(relay_header_t *dest, const char *src)
  405. {
  406. dest->command = *(uint8_t*)(src);
  407. dest->recognized = ntohs(get_uint16(src+1));
  408. dest->stream_id = ntohs(get_uint16(src+3));
  409. memcpy(dest->integrity, src+5, 4);
  410. dest->length = ntohs(get_uint16(src+9));
  411. }
  412. /** Make a relay cell out of <b>relay_command</b> and <b>payload</b>, and send
  413. * it onto the open circuit <b>circ</b>. <b>stream_id</b> is the ID on
  414. * <b>circ</b> for the stream that's sending the relay cell, or 0 if it's a
  415. * control cell. <b>cpath_layer</b> is NULL for OR->OP cells, or the
  416. * destination hop for OP->OR cells.
  417. *
  418. * If you can't send the cell, mark the circuit for close and return -1. Else
  419. * return 0.
  420. */
  421. int
  422. relay_send_command_from_edge(uint16_t stream_id, circuit_t *circ,
  423. uint8_t relay_command, const char *payload,
  424. size_t payload_len, crypt_path_t *cpath_layer)
  425. {
  426. cell_t cell;
  427. relay_header_t rh;
  428. cell_direction_t cell_direction;
  429. /* XXXX NM Split this function into a separate versions per circuit type? */
  430. tor_assert(circ);
  431. tor_assert(payload_len <= RELAY_PAYLOAD_SIZE);
  432. memset(&cell, 0, sizeof(cell_t));
  433. cell.command = CELL_RELAY;
  434. if (cpath_layer) {
  435. cell.circ_id = circ->n_circ_id;
  436. cell_direction = CELL_DIRECTION_OUT;
  437. } else if (! CIRCUIT_IS_ORIGIN(circ)) {
  438. cell.circ_id = TO_OR_CIRCUIT(circ)->p_circ_id;
  439. cell_direction = CELL_DIRECTION_IN;
  440. } else {
  441. return -1;
  442. }
  443. memset(&rh, 0, sizeof(rh));
  444. rh.command = relay_command;
  445. rh.stream_id = stream_id;
  446. rh.length = payload_len;
  447. relay_header_pack(cell.payload, &rh);
  448. if (payload_len)
  449. memcpy(cell.payload+RELAY_HEADER_SIZE, payload, payload_len);
  450. log_debug(LD_OR,"delivering %d cell %s.", relay_command,
  451. cell_direction == CELL_DIRECTION_OUT ? "forward" : "backward");
  452. if (cell_direction == CELL_DIRECTION_OUT && circ->n_conn) {
  453. /* if we're using relaybandwidthrate, this conn wants priority */
  454. circ->n_conn->client_used = approx_time();
  455. }
  456. if (cell_direction == CELL_DIRECTION_OUT) {
  457. origin_circuit_t *origin_circ = TO_ORIGIN_CIRCUIT(circ);
  458. if (origin_circ->remaining_relay_early_cells > 0) {
  459. /* If we've got any relay_early cells left, use one. Don't worry
  460. * about the conn protocol version: append_cell_to_circuit_queue will
  461. * fix it up. */
  462. cell.command = CELL_RELAY_EARLY;
  463. --origin_circ->remaining_relay_early_cells;
  464. log_debug(LD_OR, "Sending a RELAY_EARLY cell; %d remaining.",
  465. (int)origin_circ->remaining_relay_early_cells);
  466. } else if (relay_command == RELAY_COMMAND_EXTEND) {
  467. log_warn(LD_BUG, "Uh-oh. We're sending a RELAY_COMMAND_EXTEND cell, "
  468. "but we have run out of RELAY_EARLY cells on that circuit.");
  469. }
  470. }
  471. if (circuit_package_relay_cell(&cell, circ, cell_direction, cpath_layer)
  472. < 0) {
  473. log_warn(LD_BUG,"circuit_package_relay_cell failed. Closing.");
  474. circuit_mark_for_close(circ, END_CIRC_REASON_INTERNAL);
  475. return -1;
  476. }
  477. return 0;
  478. }
  479. /** Make a relay cell out of <b>relay_command</b> and <b>payload</b>, and
  480. * send it onto the open circuit <b>circ</b>. <b>fromconn</b> is the stream
  481. * that's sending the relay cell, or NULL if it's a control cell.
  482. * <b>cpath_layer</b> is NULL for OR->OP cells, or the destination hop
  483. * for OP->OR cells.
  484. *
  485. * If you can't send the cell, mark the circuit for close and
  486. * return -1. Else return 0.
  487. */
  488. int
  489. connection_edge_send_command(edge_connection_t *fromconn,
  490. uint8_t relay_command, const char *payload,
  491. size_t payload_len)
  492. {
  493. /* XXXX NM Split this function into a separate versions per circuit type? */
  494. circuit_t *circ;
  495. tor_assert(fromconn);
  496. circ = fromconn->on_circuit;
  497. if (fromconn->_base.marked_for_close) {
  498. log_warn(LD_BUG,
  499. "called on conn that's already marked for close at %s:%d.",
  500. fromconn->_base.marked_for_close_file,
  501. fromconn->_base.marked_for_close);
  502. return 0;
  503. }
  504. if (!circ) {
  505. if (fromconn->_base.type == CONN_TYPE_AP) {
  506. log_info(LD_APP,"no circ. Closing conn.");
  507. connection_mark_unattached_ap(fromconn, END_STREAM_REASON_INTERNAL);
  508. } else {
  509. log_info(LD_EXIT,"no circ. Closing conn.");
  510. fromconn->edge_has_sent_end = 1; /* no circ to send to */
  511. fromconn->end_reason = END_STREAM_REASON_INTERNAL;
  512. connection_mark_for_close(TO_CONN(fromconn));
  513. }
  514. return -1;
  515. }
  516. return relay_send_command_from_edge(fromconn->stream_id, circ,
  517. relay_command, payload,
  518. payload_len, fromconn->cpath_layer);
  519. }
  520. /** How many times will I retry a stream that fails due to DNS
  521. * resolve failure or misc error?
  522. */
  523. #define MAX_RESOLVE_FAILURES 3
  524. /** Return 1 if reason is something that you should retry if you
  525. * get the end cell before you've connected; else return 0. */
  526. static int
  527. edge_reason_is_retriable(int reason)
  528. {
  529. return reason == END_STREAM_REASON_HIBERNATING ||
  530. reason == END_STREAM_REASON_RESOURCELIMIT ||
  531. reason == END_STREAM_REASON_EXITPOLICY ||
  532. reason == END_STREAM_REASON_RESOLVEFAILED ||
  533. reason == END_STREAM_REASON_MISC;
  534. }
  535. /** Called when we receive an END cell on a stream that isn't open yet,
  536. * from the client side.
  537. * Arguments are as for connection_edge_process_relay_cell().
  538. */
  539. static int
  540. connection_ap_process_end_not_open(
  541. relay_header_t *rh, cell_t *cell, origin_circuit_t *circ,
  542. edge_connection_t *conn, crypt_path_t *layer_hint)
  543. {
  544. struct in_addr in;
  545. routerinfo_t *exitrouter;
  546. int reason = *(cell->payload+RELAY_HEADER_SIZE);
  547. int control_reason = reason | END_STREAM_REASON_FLAG_REMOTE;
  548. (void) layer_hint; /* unused */
  549. if (rh->length > 0 && edge_reason_is_retriable(reason)) {
  550. log_info(LD_APP,"Address '%s' refused due to '%s'. Considering retrying.",
  551. safe_str(conn->socks_request->address),
  552. stream_end_reason_to_string(reason));
  553. exitrouter =
  554. router_get_by_digest(circ->build_state->chosen_exit->identity_digest);
  555. switch (reason) {
  556. case END_STREAM_REASON_EXITPOLICY:
  557. if (rh->length >= 5) {
  558. uint32_t addr = ntohl(get_uint32(cell->payload+RELAY_HEADER_SIZE+1));
  559. int ttl;
  560. if (!addr) {
  561. log_info(LD_APP,"Address '%s' resolved to 0.0.0.0. Closing,",
  562. safe_str(conn->socks_request->address));
  563. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  564. return 0;
  565. }
  566. if (rh->length >= 9)
  567. ttl = (int)ntohl(get_uint32(cell->payload+RELAY_HEADER_SIZE+5));
  568. else
  569. ttl = -1;
  570. if (!(get_options()->ClientDNSRejectInternalAddresses &&
  571. is_internal_IP(addr, 0)))
  572. client_dns_set_addressmap(conn->socks_request->address, addr,
  573. conn->chosen_exit_name, ttl);
  574. }
  575. /* check if he *ought* to have allowed it */
  576. if (exitrouter &&
  577. (rh->length < 5 ||
  578. (tor_inet_aton(conn->socks_request->address, &in) &&
  579. !conn->chosen_exit_name))) {
  580. log_info(LD_APP,
  581. "Exitrouter '%s' seems to be more restrictive than its exit "
  582. "policy. Not using this router as exit for now.",
  583. exitrouter->nickname);
  584. policies_set_router_exitpolicy_to_reject_all(exitrouter);
  585. }
  586. /* rewrite it to an IP if we learned one. */
  587. if (addressmap_rewrite(conn->socks_request->address,
  588. sizeof(conn->socks_request->address),
  589. NULL)) {
  590. control_event_stream_status(conn, STREAM_EVENT_REMAP, 0);
  591. }
  592. if (conn->chosen_exit_optional ||
  593. conn->chosen_exit_retries) {
  594. /* stop wanting a specific exit */
  595. conn->chosen_exit_optional = 0;
  596. /* A non-zero chosen_exit_retries can happen if we set a
  597. * TrackHostExits for this address under a port that the exit
  598. * relay allows, but then try the same address with a different
  599. * port that it doesn't allow to exit. We shouldn't unregister
  600. * the mapping, since it is probably still wanted on the
  601. * original port. But now we give away to the exit relay that
  602. * we probably have a TrackHostExits on it. So be it. */
  603. conn->chosen_exit_retries = 0;
  604. tor_free(conn->chosen_exit_name); /* clears it */
  605. }
  606. if (connection_ap_detach_retriable(conn, circ, control_reason) >= 0)
  607. return 0;
  608. /* else, conn will get closed below */
  609. break;
  610. case END_STREAM_REASON_CONNECTREFUSED:
  611. if (!conn->chosen_exit_optional)
  612. break; /* break means it'll close, below */
  613. /* Else fall through: expire this circuit, clear the
  614. * chosen_exit_name field, and try again. */
  615. case END_STREAM_REASON_RESOLVEFAILED:
  616. case END_STREAM_REASON_TIMEOUT:
  617. case END_STREAM_REASON_MISC:
  618. if (client_dns_incr_failures(conn->socks_request->address)
  619. < MAX_RESOLVE_FAILURES) {
  620. /* We haven't retried too many times; reattach the connection. */
  621. circuit_log_path(LOG_INFO,LD_APP,circ);
  622. tor_assert(circ->_base.timestamp_dirty);
  623. circ->_base.timestamp_dirty -= get_options()->MaxCircuitDirtiness;
  624. if (conn->chosen_exit_optional) {
  625. /* stop wanting a specific exit */
  626. conn->chosen_exit_optional = 0;
  627. tor_free(conn->chosen_exit_name); /* clears it */
  628. }
  629. if (connection_ap_detach_retriable(conn, circ, control_reason) >= 0)
  630. return 0;
  631. /* else, conn will get closed below */
  632. } else {
  633. log_notice(LD_APP,
  634. "Have tried resolving or connecting to address '%s' "
  635. "at %d different places. Giving up.",
  636. safe_str(conn->socks_request->address),
  637. MAX_RESOLVE_FAILURES);
  638. /* clear the failures, so it will have a full try next time */
  639. client_dns_clear_failures(conn->socks_request->address);
  640. }
  641. break;
  642. case END_STREAM_REASON_HIBERNATING:
  643. case END_STREAM_REASON_RESOURCELIMIT:
  644. if (exitrouter) {
  645. policies_set_router_exitpolicy_to_reject_all(exitrouter);
  646. }
  647. if (conn->chosen_exit_optional) {
  648. /* stop wanting a specific exit */
  649. conn->chosen_exit_optional = 0;
  650. tor_free(conn->chosen_exit_name); /* clears it */
  651. }
  652. if (connection_ap_detach_retriable(conn, circ, control_reason) >= 0)
  653. return 0;
  654. /* else, will close below */
  655. break;
  656. } /* end switch */
  657. log_info(LD_APP,"Giving up on retrying; conn can't be handled.");
  658. }
  659. log_info(LD_APP,
  660. "Edge got end (%s) before we're connected. Marking for close.",
  661. stream_end_reason_to_string(rh->length > 0 ? reason : -1));
  662. circuit_log_path(LOG_INFO,LD_APP,circ);
  663. /* need to test because of detach_retriable*/
  664. if (!conn->_base.marked_for_close)
  665. connection_mark_unattached_ap(conn, control_reason);
  666. return 0;
  667. }
  668. /** Helper: change the socks_request-&gt;address field on conn to the
  669. * dotted-quad representation of <b>new_addr</b> (given in host order),
  670. * and send an appropriate REMAP event. */
  671. static void
  672. remap_event_helper(edge_connection_t *conn, uint32_t new_addr)
  673. {
  674. struct in_addr in;
  675. in.s_addr = htonl(new_addr);
  676. tor_inet_ntoa(&in, conn->socks_request->address,
  677. sizeof(conn->socks_request->address));
  678. control_event_stream_status(conn, STREAM_EVENT_REMAP,
  679. REMAP_STREAM_SOURCE_EXIT);
  680. }
  681. /** An incoming relay cell has arrived from circuit <b>circ</b> to
  682. * stream <b>conn</b>.
  683. *
  684. * The arguments here are the same as in
  685. * connection_edge_process_relay_cell() below; this function is called
  686. * from there when <b>conn</b> is defined and not in an open state.
  687. */
  688. static int
  689. connection_edge_process_relay_cell_not_open(
  690. relay_header_t *rh, cell_t *cell, circuit_t *circ,
  691. edge_connection_t *conn, crypt_path_t *layer_hint)
  692. {
  693. if (rh->command == RELAY_COMMAND_END) {
  694. if (CIRCUIT_IS_ORIGIN(circ) && conn->_base.type == CONN_TYPE_AP) {
  695. return connection_ap_process_end_not_open(rh, cell,
  696. TO_ORIGIN_CIRCUIT(circ), conn,
  697. layer_hint);
  698. } else {
  699. /* we just got an 'end', don't need to send one */
  700. conn->edge_has_sent_end = 1;
  701. conn->end_reason = *(cell->payload+RELAY_HEADER_SIZE) |
  702. END_STREAM_REASON_FLAG_REMOTE;
  703. connection_mark_for_close(TO_CONN(conn));
  704. return 0;
  705. }
  706. }
  707. if (conn->_base.type == CONN_TYPE_AP &&
  708. rh->command == RELAY_COMMAND_CONNECTED) {
  709. tor_assert(CIRCUIT_IS_ORIGIN(circ));
  710. if (conn->_base.state != AP_CONN_STATE_CONNECT_WAIT) {
  711. log_fn(LOG_PROTOCOL_WARN, LD_APP,
  712. "Got 'connected' while not in state connect_wait. Dropping.");
  713. return 0;
  714. }
  715. conn->_base.state = AP_CONN_STATE_OPEN;
  716. log_info(LD_APP,"'connected' received after %d seconds.",
  717. (int)(time(NULL) - conn->_base.timestamp_lastread));
  718. if (rh->length >= 4) {
  719. uint32_t addr = ntohl(get_uint32(cell->payload+RELAY_HEADER_SIZE));
  720. int ttl;
  721. if (!addr || (get_options()->ClientDNSRejectInternalAddresses &&
  722. is_internal_IP(addr, 0))) {
  723. char buf[INET_NTOA_BUF_LEN];
  724. struct in_addr a;
  725. a.s_addr = htonl(addr);
  726. tor_inet_ntoa(&a, buf, sizeof(buf));
  727. log_info(LD_APP,
  728. "...but it claims the IP address was %s. Closing.", buf);
  729. connection_edge_end(conn, END_STREAM_REASON_TORPROTOCOL);
  730. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  731. return 0;
  732. }
  733. if (rh->length >= 8)
  734. ttl = (int)ntohl(get_uint32(cell->payload+RELAY_HEADER_SIZE+4));
  735. else
  736. ttl = -1;
  737. client_dns_set_addressmap(conn->socks_request->address, addr,
  738. conn->chosen_exit_name, ttl);
  739. remap_event_helper(conn, addr);
  740. }
  741. circuit_log_path(LOG_INFO,LD_APP,TO_ORIGIN_CIRCUIT(circ));
  742. /* don't send a socks reply to transparent conns */
  743. if (!conn->socks_request->has_finished)
  744. connection_ap_handshake_socks_reply(conn, NULL, 0, 0);
  745. /* Was it a linked dir conn? If so, a dir request just started to
  746. * fetch something; this could be a bootstrap status milestone. */
  747. log_debug(LD_APP, "considering");
  748. if (TO_CONN(conn)->linked_conn &&
  749. TO_CONN(conn)->linked_conn->type == CONN_TYPE_DIR) {
  750. connection_t *dirconn = TO_CONN(conn)->linked_conn;
  751. log_debug(LD_APP, "it is! %d", dirconn->purpose);
  752. switch (dirconn->purpose) {
  753. case DIR_PURPOSE_FETCH_CERTIFICATE:
  754. if (consensus_is_waiting_for_certs())
  755. control_event_bootstrap(BOOTSTRAP_STATUS_LOADING_KEYS, 0);
  756. break;
  757. case DIR_PURPOSE_FETCH_CONSENSUS:
  758. control_event_bootstrap(BOOTSTRAP_STATUS_LOADING_STATUS, 0);
  759. break;
  760. case DIR_PURPOSE_FETCH_SERVERDESC:
  761. control_event_bootstrap(BOOTSTRAP_STATUS_LOADING_DESCRIPTORS,
  762. count_loading_descriptors_progress());
  763. break;
  764. }
  765. }
  766. /* handle anything that might have queued */
  767. if (connection_edge_package_raw_inbuf(conn, 1) < 0) {
  768. /* (We already sent an end cell if possible) */
  769. connection_mark_for_close(TO_CONN(conn));
  770. return 0;
  771. }
  772. return 0;
  773. }
  774. if (conn->_base.type == CONN_TYPE_AP &&
  775. rh->command == RELAY_COMMAND_RESOLVED) {
  776. int ttl;
  777. int answer_len;
  778. uint8_t answer_type;
  779. if (conn->_base.state != AP_CONN_STATE_RESOLVE_WAIT) {
  780. log_fn(LOG_PROTOCOL_WARN, LD_APP, "Got a 'resolved' cell while "
  781. "not in state resolve_wait. Dropping.");
  782. return 0;
  783. }
  784. tor_assert(SOCKS_COMMAND_IS_RESOLVE(conn->socks_request->command));
  785. answer_len = cell->payload[RELAY_HEADER_SIZE+1];
  786. if (rh->length < 2 || answer_len+2>rh->length) {
  787. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  788. "Dropping malformed 'resolved' cell");
  789. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  790. return 0;
  791. }
  792. answer_type = cell->payload[RELAY_HEADER_SIZE];
  793. if (rh->length >= answer_len+6)
  794. ttl = (int)ntohl(get_uint32(cell->payload+RELAY_HEADER_SIZE+
  795. 2+answer_len));
  796. else
  797. ttl = -1;
  798. if (answer_type == RESOLVED_TYPE_IPV4 && answer_len >= 4) {
  799. uint32_t addr = ntohl(get_uint32(cell->payload+RELAY_HEADER_SIZE+2));
  800. if (get_options()->ClientDNSRejectInternalAddresses &&
  801. is_internal_IP(addr, 0)) {
  802. char buf[INET_NTOA_BUF_LEN];
  803. struct in_addr a;
  804. a.s_addr = htonl(addr);
  805. tor_inet_ntoa(&a, buf, sizeof(buf));
  806. log_info(LD_APP,"Got a resolve with answer %s. Rejecting.", buf);
  807. connection_ap_handshake_socks_resolved(conn,
  808. RESOLVED_TYPE_ERROR_TRANSIENT,
  809. 0, NULL, 0, TIME_MAX);
  810. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  811. return 0;
  812. }
  813. }
  814. connection_ap_handshake_socks_resolved(conn,
  815. answer_type,
  816. cell->payload[RELAY_HEADER_SIZE+1], /*answer_len*/
  817. cell->payload+RELAY_HEADER_SIZE+2, /*answer*/
  818. ttl,
  819. -1);
  820. if (answer_type == RESOLVED_TYPE_IPV4) {
  821. uint32_t addr = ntohl(get_uint32(cell->payload+RELAY_HEADER_SIZE+2));
  822. remap_event_helper(conn, addr);
  823. }
  824. connection_mark_unattached_ap(conn,
  825. END_STREAM_REASON_DONE |
  826. END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED);
  827. return 0;
  828. }
  829. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  830. "Got an unexpected relay command %d, in state %d (%s). Dropping.",
  831. rh->command, conn->_base.state,
  832. conn_state_to_string(conn->_base.type, conn->_base.state));
  833. return 0; /* for forward compatibility, don't kill the circuit */
  834. // connection_edge_end(conn, END_STREAM_REASON_TORPROTOCOL);
  835. // connection_mark_for_close(conn);
  836. // return -1;
  837. }
  838. /** An incoming relay cell has arrived on circuit <b>circ</b>. If
  839. * <b>conn</b> is NULL this is a control cell, else <b>cell</b> is
  840. * destined for <b>conn</b>.
  841. *
  842. * If <b>layer_hint</b> is defined, then we're the origin of the
  843. * circuit, and it specifies the hop that packaged <b>cell</b>.
  844. *
  845. * Return -reason if you want to warn and tear down the circuit, else 0.
  846. */
  847. static int
  848. connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ,
  849. edge_connection_t *conn,
  850. crypt_path_t *layer_hint)
  851. {
  852. static int num_seen=0;
  853. relay_header_t rh;
  854. unsigned domain = layer_hint?LD_APP:LD_EXIT;
  855. int reason;
  856. tor_assert(cell);
  857. tor_assert(circ);
  858. relay_header_unpack(&rh, cell->payload);
  859. // log_fn(LOG_DEBUG,"command %d stream %d", rh.command, rh.stream_id);
  860. num_seen++;
  861. log_debug(domain, "Now seen %d relay cells here.", num_seen);
  862. if (rh.length > RELAY_PAYLOAD_SIZE) {
  863. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  864. "Relay cell length field too long. Closing circuit.");
  865. return - END_CIRC_REASON_TORPROTOCOL;
  866. }
  867. /* either conn is NULL, in which case we've got a control cell, or else
  868. * conn points to the recognized stream. */
  869. if (conn && !connection_state_is_open(TO_CONN(conn)))
  870. return connection_edge_process_relay_cell_not_open(
  871. &rh, cell, circ, conn, layer_hint);
  872. switch (rh.command) {
  873. case RELAY_COMMAND_DROP:
  874. // log_info(domain,"Got a relay-level padding cell. Dropping.");
  875. return 0;
  876. case RELAY_COMMAND_BEGIN:
  877. case RELAY_COMMAND_BEGIN_DIR:
  878. if (layer_hint &&
  879. circ->purpose != CIRCUIT_PURPOSE_S_REND_JOINED) {
  880. log_fn(LOG_PROTOCOL_WARN, LD_APP,
  881. "Relay begin request unsupported at AP. Dropping.");
  882. return 0;
  883. }
  884. if (conn) {
  885. log_fn(LOG_PROTOCOL_WARN, domain,
  886. "Begin cell for known stream. Dropping.");
  887. return 0;
  888. }
  889. return connection_exit_begin_conn(cell, circ);
  890. case RELAY_COMMAND_DATA:
  891. ++stats_n_data_cells_received;
  892. if (( layer_hint && --layer_hint->deliver_window < 0) ||
  893. (!layer_hint && --circ->deliver_window < 0)) {
  894. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  895. "(relay data) circ deliver_window below 0. Killing.");
  896. connection_edge_end(conn, END_STREAM_REASON_TORPROTOCOL);
  897. connection_mark_for_close(TO_CONN(conn));
  898. return -END_CIRC_REASON_TORPROTOCOL;
  899. }
  900. log_debug(domain,"circ deliver_window now %d.", layer_hint ?
  901. layer_hint->deliver_window : circ->deliver_window);
  902. circuit_consider_sending_sendme(circ, layer_hint);
  903. if (!conn) {
  904. log_info(domain,"data cell dropped, unknown stream.");
  905. return 0;
  906. }
  907. if (--conn->deliver_window < 0) { /* is it below 0 after decrement? */
  908. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  909. "(relay data) conn deliver_window below 0. Killing.");
  910. return -END_CIRC_REASON_TORPROTOCOL;
  911. }
  912. stats_n_data_bytes_received += rh.length;
  913. connection_write_to_buf(cell->payload + RELAY_HEADER_SIZE,
  914. rh.length, TO_CONN(conn));
  915. connection_edge_consider_sending_sendme(conn);
  916. return 0;
  917. case RELAY_COMMAND_END:
  918. reason = rh.length > 0 ?
  919. *(uint8_t *)(cell->payload+RELAY_HEADER_SIZE) : END_STREAM_REASON_MISC;
  920. if (!conn) {
  921. log_info(domain,"end cell (%s) dropped, unknown stream.",
  922. stream_end_reason_to_string(reason));
  923. return 0;
  924. }
  925. /* XXX add to this log_fn the exit node's nickname? */
  926. log_info(domain,"%d: end cell (%s) for stream %d. Removing stream.",
  927. conn->_base.s,
  928. stream_end_reason_to_string(reason),
  929. conn->stream_id);
  930. if (conn->socks_request && !conn->socks_request->has_finished)
  931. log_warn(LD_BUG,
  932. "open stream hasn't sent socks answer yet? Closing.");
  933. /* We just *got* an end; no reason to send one. */
  934. conn->edge_has_sent_end = 1;
  935. if (!conn->end_reason)
  936. conn->end_reason = reason | END_STREAM_REASON_FLAG_REMOTE;
  937. if (!conn->_base.marked_for_close) {
  938. /* only mark it if not already marked. it's possible to
  939. * get the 'end' right around when the client hangs up on us. */
  940. connection_mark_for_close(TO_CONN(conn));
  941. conn->_base.hold_open_until_flushed = 1;
  942. }
  943. return 0;
  944. case RELAY_COMMAND_EXTEND:
  945. if (conn) {
  946. log_fn(LOG_PROTOCOL_WARN, domain,
  947. "'extend' cell received for non-zero stream. Dropping.");
  948. return 0;
  949. }
  950. return circuit_extend(cell, circ);
  951. case RELAY_COMMAND_EXTENDED:
  952. if (!layer_hint) {
  953. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  954. "'extended' unsupported at non-origin. Dropping.");
  955. return 0;
  956. }
  957. log_debug(domain,"Got an extended cell! Yay.");
  958. if ((reason = circuit_finish_handshake(TO_ORIGIN_CIRCUIT(circ),
  959. CELL_CREATED,
  960. cell->payload+RELAY_HEADER_SIZE)) < 0) {
  961. log_warn(domain,"circuit_finish_handshake failed.");
  962. return reason;
  963. }
  964. if ((reason=circuit_send_next_onion_skin(TO_ORIGIN_CIRCUIT(circ)))<0) {
  965. log_info(domain,"circuit_send_next_onion_skin() failed.");
  966. return reason;
  967. }
  968. return 0;
  969. case RELAY_COMMAND_TRUNCATE:
  970. if (layer_hint) {
  971. log_fn(LOG_PROTOCOL_WARN, LD_APP,
  972. "'truncate' unsupported at origin. Dropping.");
  973. return 0;
  974. }
  975. if (circ->n_conn) {
  976. uint8_t trunc_reason = *(uint8_t*)(cell->payload + RELAY_HEADER_SIZE);
  977. connection_or_send_destroy(circ->n_circ_id, circ->n_conn,
  978. trunc_reason);
  979. circuit_set_n_circid_orconn(circ, 0, NULL);
  980. }
  981. log_debug(LD_EXIT, "Processed 'truncate', replying.");
  982. {
  983. char payload[1];
  984. payload[0] = (char)END_CIRC_REASON_REQUESTED;
  985. relay_send_command_from_edge(0, circ, RELAY_COMMAND_TRUNCATED,
  986. payload, sizeof(payload), NULL);
  987. }
  988. return 0;
  989. case RELAY_COMMAND_TRUNCATED:
  990. if (!layer_hint) {
  991. log_fn(LOG_PROTOCOL_WARN, LD_EXIT,
  992. "'truncated' unsupported at non-origin. Dropping.");
  993. return 0;
  994. }
  995. circuit_truncated(TO_ORIGIN_CIRCUIT(circ), layer_hint);
  996. return 0;
  997. case RELAY_COMMAND_CONNECTED:
  998. if (conn) {
  999. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1000. "'connected' unsupported while open. Closing circ.");
  1001. return -END_CIRC_REASON_TORPROTOCOL;
  1002. }
  1003. log_info(domain,
  1004. "'connected' received, no conn attached anymore. Ignoring.");
  1005. return 0;
  1006. case RELAY_COMMAND_SENDME:
  1007. if (!conn) {
  1008. if (layer_hint) {
  1009. layer_hint->package_window += CIRCWINDOW_INCREMENT;
  1010. log_debug(LD_APP,"circ-level sendme at origin, packagewindow %d.",
  1011. layer_hint->package_window);
  1012. circuit_resume_edge_reading(circ, layer_hint);
  1013. } else {
  1014. circ->package_window += CIRCWINDOW_INCREMENT;
  1015. log_debug(LD_APP,
  1016. "circ-level sendme at non-origin, packagewindow %d.",
  1017. circ->package_window);
  1018. circuit_resume_edge_reading(circ, layer_hint);
  1019. }
  1020. return 0;
  1021. }
  1022. conn->package_window += STREAMWINDOW_INCREMENT;
  1023. log_debug(domain,"stream-level sendme, packagewindow now %d.",
  1024. conn->package_window);
  1025. connection_start_reading(TO_CONN(conn));
  1026. /* handle whatever might still be on the inbuf */
  1027. if (connection_edge_package_raw_inbuf(conn, 1) < 0) {
  1028. /* (We already sent an end cell if possible) */
  1029. connection_mark_for_close(TO_CONN(conn));
  1030. return 0;
  1031. }
  1032. return 0;
  1033. case RELAY_COMMAND_RESOLVE:
  1034. if (layer_hint) {
  1035. log_fn(LOG_PROTOCOL_WARN, LD_APP,
  1036. "resolve request unsupported at AP; dropping.");
  1037. return 0;
  1038. } else if (conn) {
  1039. log_fn(LOG_PROTOCOL_WARN, domain,
  1040. "resolve request for known stream; dropping.");
  1041. return 0;
  1042. } else if (circ->purpose != CIRCUIT_PURPOSE_OR) {
  1043. log_fn(LOG_PROTOCOL_WARN, domain,
  1044. "resolve request on circ with purpose %d; dropping",
  1045. circ->purpose);
  1046. return 0;
  1047. }
  1048. connection_exit_begin_resolve(cell, TO_OR_CIRCUIT(circ));
  1049. return 0;
  1050. case RELAY_COMMAND_RESOLVED:
  1051. if (conn) {
  1052. log_fn(LOG_PROTOCOL_WARN, domain,
  1053. "'resolved' unsupported while open. Closing circ.");
  1054. return -END_CIRC_REASON_TORPROTOCOL;
  1055. }
  1056. log_info(domain,
  1057. "'resolved' received, no conn attached anymore. Ignoring.");
  1058. return 0;
  1059. case RELAY_COMMAND_ESTABLISH_INTRO:
  1060. case RELAY_COMMAND_ESTABLISH_RENDEZVOUS:
  1061. case RELAY_COMMAND_INTRODUCE1:
  1062. case RELAY_COMMAND_INTRODUCE2:
  1063. case RELAY_COMMAND_INTRODUCE_ACK:
  1064. case RELAY_COMMAND_RENDEZVOUS1:
  1065. case RELAY_COMMAND_RENDEZVOUS2:
  1066. case RELAY_COMMAND_INTRO_ESTABLISHED:
  1067. case RELAY_COMMAND_RENDEZVOUS_ESTABLISHED:
  1068. rend_process_relay_cell(circ, layer_hint,
  1069. rh.command, rh.length,
  1070. cell->payload+RELAY_HEADER_SIZE);
  1071. return 0;
  1072. }
  1073. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1074. "Received unknown relay command %d. Perhaps the other side is using "
  1075. "a newer version of Tor? Dropping.",
  1076. rh.command);
  1077. return 0; /* for forward compatibility, don't kill the circuit */
  1078. }
  1079. uint64_t stats_n_data_cells_packaged = 0;
  1080. uint64_t stats_n_data_bytes_packaged = 0;
  1081. uint64_t stats_n_data_cells_received = 0;
  1082. uint64_t stats_n_data_bytes_received = 0;
  1083. /** While conn->inbuf has an entire relay payload of bytes on it,
  1084. * and the appropriate package windows aren't empty, grab a cell
  1085. * and send it down the circuit.
  1086. *
  1087. * Return -1 (and send a RELAY_COMMAND_END cell if necessary) if conn should
  1088. * be marked for close, else return 0.
  1089. */
  1090. int
  1091. connection_edge_package_raw_inbuf(edge_connection_t *conn, int package_partial)
  1092. {
  1093. size_t amount_to_process, length;
  1094. char payload[CELL_PAYLOAD_SIZE];
  1095. circuit_t *circ;
  1096. unsigned domain = conn->cpath_layer ? LD_APP : LD_EXIT;
  1097. tor_assert(conn);
  1098. if (conn->_base.marked_for_close) {
  1099. log_warn(LD_BUG,
  1100. "called on conn that's already marked for close at %s:%d.",
  1101. conn->_base.marked_for_close_file, conn->_base.marked_for_close);
  1102. return 0;
  1103. }
  1104. repeat_connection_edge_package_raw_inbuf:
  1105. circ = circuit_get_by_edge_conn(conn);
  1106. if (!circ) {
  1107. log_info(domain,"conn has no circuit! Closing.");
  1108. conn->end_reason = END_STREAM_REASON_CANT_ATTACH;
  1109. return -1;
  1110. }
  1111. if (circuit_consider_stop_edge_reading(circ, conn->cpath_layer))
  1112. return 0;
  1113. if (conn->package_window <= 0) {
  1114. log_info(domain,"called with package_window %d. Skipping.",
  1115. conn->package_window);
  1116. connection_stop_reading(TO_CONN(conn));
  1117. return 0;
  1118. }
  1119. amount_to_process = buf_datalen(conn->_base.inbuf);
  1120. if (!amount_to_process)
  1121. return 0;
  1122. if (!package_partial && amount_to_process < RELAY_PAYLOAD_SIZE)
  1123. return 0;
  1124. if (amount_to_process > RELAY_PAYLOAD_SIZE) {
  1125. length = RELAY_PAYLOAD_SIZE;
  1126. } else {
  1127. length = amount_to_process;
  1128. }
  1129. stats_n_data_bytes_packaged += length;
  1130. stats_n_data_cells_packaged += 1;
  1131. connection_fetch_from_buf(payload, length, TO_CONN(conn));
  1132. log_debug(domain,"(%d) Packaging %d bytes (%d waiting).", conn->_base.s,
  1133. (int)length, (int)buf_datalen(conn->_base.inbuf));
  1134. if (connection_edge_send_command(conn, RELAY_COMMAND_DATA,
  1135. payload, length) < 0 )
  1136. /* circuit got marked for close, don't continue, don't need to mark conn */
  1137. return 0;
  1138. if (!conn->cpath_layer) { /* non-rendezvous exit */
  1139. tor_assert(circ->package_window > 0);
  1140. circ->package_window--;
  1141. } else { /* we're an AP, or an exit on a rendezvous circ */
  1142. tor_assert(conn->cpath_layer->package_window > 0);
  1143. conn->cpath_layer->package_window--;
  1144. }
  1145. if (--conn->package_window <= 0) { /* is it 0 after decrement? */
  1146. connection_stop_reading(TO_CONN(conn));
  1147. log_debug(domain,"conn->package_window reached 0.");
  1148. circuit_consider_stop_edge_reading(circ, conn->cpath_layer);
  1149. return 0; /* don't process the inbuf any more */
  1150. }
  1151. log_debug(domain,"conn->package_window is now %d",conn->package_window);
  1152. /* handle more if there's more, or return 0 if there isn't */
  1153. goto repeat_connection_edge_package_raw_inbuf;
  1154. }
  1155. /** Called when we've just received a relay data cell, or when
  1156. * we've just finished flushing all bytes to stream <b>conn</b>.
  1157. *
  1158. * If conn->outbuf is not too full, and our deliver window is
  1159. * low, send back a suitable number of stream-level sendme cells.
  1160. */
  1161. void
  1162. connection_edge_consider_sending_sendme(edge_connection_t *conn)
  1163. {
  1164. circuit_t *circ;
  1165. if (connection_outbuf_too_full(TO_CONN(conn)))
  1166. return;
  1167. circ = circuit_get_by_edge_conn(conn);
  1168. if (!circ) {
  1169. /* this can legitimately happen if the destroy has already
  1170. * arrived and torn down the circuit */
  1171. log_info(LD_APP,"No circuit associated with conn. Skipping.");
  1172. return;
  1173. }
  1174. while (conn->deliver_window < STREAMWINDOW_START - STREAMWINDOW_INCREMENT) {
  1175. log_debug(conn->cpath_layer?LD_APP:LD_EXIT,
  1176. "Outbuf %d, Queueing stream sendme.",
  1177. (int)conn->_base.outbuf_flushlen);
  1178. conn->deliver_window += STREAMWINDOW_INCREMENT;
  1179. if (connection_edge_send_command(conn, RELAY_COMMAND_SENDME,
  1180. NULL, 0) < 0) {
  1181. log_warn(LD_APP,"connection_edge_send_command failed. Skipping.");
  1182. return; /* the circuit's closed, don't continue */
  1183. }
  1184. }
  1185. }
  1186. /** The circuit <b>circ</b> has received a circuit-level sendme
  1187. * (on hop <b>layer_hint</b>, if we're the OP). Go through all the
  1188. * attached streams and let them resume reading and packaging, if
  1189. * their stream windows allow it.
  1190. */
  1191. static void
  1192. circuit_resume_edge_reading(circuit_t *circ, crypt_path_t *layer_hint)
  1193. {
  1194. log_debug(layer_hint?LD_APP:LD_EXIT,"resuming");
  1195. if (CIRCUIT_IS_ORIGIN(circ))
  1196. circuit_resume_edge_reading_helper(TO_ORIGIN_CIRCUIT(circ)->p_streams,
  1197. circ, layer_hint);
  1198. else
  1199. circuit_resume_edge_reading_helper(TO_OR_CIRCUIT(circ)->n_streams,
  1200. circ, layer_hint);
  1201. }
  1202. /** A helper function for circuit_resume_edge_reading() above.
  1203. * The arguments are the same, except that <b>conn</b> is the head
  1204. * of a linked list of edge streams that should each be considered.
  1205. */
  1206. static int
  1207. circuit_resume_edge_reading_helper(edge_connection_t *conn,
  1208. circuit_t *circ,
  1209. crypt_path_t *layer_hint)
  1210. {
  1211. for ( ; conn; conn=conn->next_stream) {
  1212. if (conn->_base.marked_for_close)
  1213. continue;
  1214. if ((!layer_hint && conn->package_window > 0) ||
  1215. (layer_hint && conn->package_window > 0 &&
  1216. conn->cpath_layer == layer_hint)) {
  1217. connection_start_reading(TO_CONN(conn));
  1218. /* handle whatever might still be on the inbuf */
  1219. if (connection_edge_package_raw_inbuf(conn, 1)<0) {
  1220. /* (We already sent an end cell if possible) */
  1221. connection_mark_for_close(TO_CONN(conn));
  1222. continue;
  1223. }
  1224. /* If the circuit won't accept any more data, return without looking
  1225. * at any more of the streams. Any connections that should be stopped
  1226. * have already been stopped by connection_edge_package_raw_inbuf. */
  1227. if (circuit_consider_stop_edge_reading(circ, layer_hint))
  1228. return -1;
  1229. }
  1230. }
  1231. return 0;
  1232. }
  1233. /** Check if the package window for <b>circ</b> is empty (at
  1234. * hop <b>layer_hint</b> if it's defined).
  1235. *
  1236. * If yes, tell edge streams to stop reading and return 1.
  1237. * Else return 0.
  1238. */
  1239. static int
  1240. circuit_consider_stop_edge_reading(circuit_t *circ, crypt_path_t *layer_hint)
  1241. {
  1242. edge_connection_t *conn = NULL;
  1243. unsigned domain = layer_hint ? LD_APP : LD_EXIT;
  1244. if (!layer_hint) {
  1245. or_circuit_t *or_circ = TO_OR_CIRCUIT(circ);
  1246. log_debug(domain,"considering circ->package_window %d",
  1247. circ->package_window);
  1248. if (circ->package_window <= 0) {
  1249. log_debug(domain,"yes, not-at-origin. stopped.");
  1250. for (conn = or_circ->n_streams; conn; conn=conn->next_stream)
  1251. connection_stop_reading(TO_CONN(conn));
  1252. return 1;
  1253. }
  1254. return 0;
  1255. }
  1256. /* else, layer hint is defined, use it */
  1257. log_debug(domain,"considering layer_hint->package_window %d",
  1258. layer_hint->package_window);
  1259. if (layer_hint->package_window <= 0) {
  1260. log_debug(domain,"yes, at-origin. stopped.");
  1261. for (conn = TO_ORIGIN_CIRCUIT(circ)->p_streams; conn;
  1262. conn=conn->next_stream)
  1263. if (conn->cpath_layer == layer_hint)
  1264. connection_stop_reading(TO_CONN(conn));
  1265. return 1;
  1266. }
  1267. return 0;
  1268. }
  1269. /** Check if the deliver_window for circuit <b>circ</b> (at hop
  1270. * <b>layer_hint</b> if it's defined) is low enough that we should
  1271. * send a circuit-level sendme back down the circuit. If so, send
  1272. * enough sendmes that the window would be overfull if we sent any
  1273. * more.
  1274. */
  1275. static void
  1276. circuit_consider_sending_sendme(circuit_t *circ, crypt_path_t *layer_hint)
  1277. {
  1278. // log_fn(LOG_INFO,"Considering: layer_hint is %s",
  1279. // layer_hint ? "defined" : "null");
  1280. while ((layer_hint ? layer_hint->deliver_window : circ->deliver_window) <
  1281. CIRCWINDOW_START - CIRCWINDOW_INCREMENT) {
  1282. log_debug(LD_CIRC,"Queueing circuit sendme.");
  1283. if (layer_hint)
  1284. layer_hint->deliver_window += CIRCWINDOW_INCREMENT;
  1285. else
  1286. circ->deliver_window += CIRCWINDOW_INCREMENT;
  1287. if (relay_send_command_from_edge(0, circ, RELAY_COMMAND_SENDME,
  1288. NULL, 0, layer_hint) < 0) {
  1289. log_warn(LD_CIRC,
  1290. "relay_send_command_from_edge failed. Circuit's closed.");
  1291. return; /* the circuit's closed, don't continue */
  1292. }
  1293. }
  1294. }
  1295. /** Stop reading on edge connections when we have this many cells
  1296. * waiting on the appropriate queue. */
  1297. #define CELL_QUEUE_HIGHWATER_SIZE 256
  1298. /** Start reading from edge connections again when we get down to this many
  1299. * cells. */
  1300. #define CELL_QUEUE_LOWWATER_SIZE 64
  1301. #ifdef ACTIVE_CIRCUITS_PARANOIA
  1302. #define assert_active_circuits_ok_paranoid(conn) \
  1303. assert_active_circuits_ok(conn)
  1304. #else
  1305. #define assert_active_circuits_ok_paranoid(conn)
  1306. #endif
  1307. /** The total number of cells we have allocated from the memory pool. */
  1308. static int total_cells_allocated = 0;
  1309. static mp_pool_t *cell_pool = NULL;
  1310. /** Allocate structures to hold cells. */
  1311. void
  1312. init_cell_pool(void)
  1313. {
  1314. tor_assert(!cell_pool);
  1315. cell_pool = mp_pool_new(sizeof(packed_cell_t), 128*1024);
  1316. }
  1317. /** Free all storage used to hold cells. */
  1318. void
  1319. free_cell_pool(void)
  1320. {
  1321. /* Maybe we haven't called init_cell_pool yet; need to check for it. */
  1322. if (cell_pool) {
  1323. mp_pool_destroy(cell_pool);
  1324. cell_pool = NULL;
  1325. }
  1326. }
  1327. /** Free excess storage in cell pool. */
  1328. void
  1329. clean_cell_pool(void)
  1330. {
  1331. tor_assert(cell_pool);
  1332. mp_pool_clean(cell_pool, 0, 1);
  1333. }
  1334. /** Release storage held by <b>cell</b>. */
  1335. static INLINE void
  1336. packed_cell_free(packed_cell_t *cell)
  1337. {
  1338. --total_cells_allocated;
  1339. mp_pool_release(cell);
  1340. }
  1341. /** Allocate and return a new packed_cell_t. */
  1342. static INLINE packed_cell_t *
  1343. packed_cell_alloc(void)
  1344. {
  1345. ++total_cells_allocated;
  1346. return mp_pool_get(cell_pool);
  1347. }
  1348. /* DOCDOC dump_cell_pool_usage */
  1349. void
  1350. dump_cell_pool_usage(int severity)
  1351. {
  1352. circuit_t *c;
  1353. int n_circs = 0;
  1354. int n_cells = 0;
  1355. for (c = _circuit_get_global_list(); c; c = c->next) {
  1356. n_cells += c->n_conn_cells.n;
  1357. if (!CIRCUIT_IS_ORIGIN(c))
  1358. n_cells += TO_OR_CIRCUIT(c)->p_conn_cells.n;
  1359. ++n_circs;
  1360. }
  1361. log(severity, LD_MM, "%d cells allocated on %d circuits. %d cells leaked.",
  1362. n_cells, n_circs, total_cells_allocated - n_cells);
  1363. mp_pool_log_status(cell_pool, severity);
  1364. }
  1365. /** Allocate a new copy of packed <b>cell</b>. */
  1366. static INLINE packed_cell_t *
  1367. packed_cell_copy(const cell_t *cell)
  1368. {
  1369. packed_cell_t *c = packed_cell_alloc();
  1370. cell_pack(c, cell);
  1371. c->next = NULL;
  1372. return c;
  1373. }
  1374. /** Append <b>cell</b> to the end of <b>queue</b>. */
  1375. void
  1376. cell_queue_append(cell_queue_t *queue, packed_cell_t *cell)
  1377. {
  1378. if (queue->tail) {
  1379. tor_assert(!queue->tail->next);
  1380. queue->tail->next = cell;
  1381. } else {
  1382. queue->head = cell;
  1383. }
  1384. queue->tail = cell;
  1385. cell->next = NULL;
  1386. ++queue->n;
  1387. }
  1388. /** Append a newly allocated copy of <b>cell</b> to the end of <b>queue</b> */
  1389. void
  1390. cell_queue_append_packed_copy(cell_queue_t *queue, const cell_t *cell)
  1391. {
  1392. cell_queue_append(queue, packed_cell_copy(cell));
  1393. }
  1394. /** Remove and free every cell in <b>queue</b>. */
  1395. void
  1396. cell_queue_clear(cell_queue_t *queue)
  1397. {
  1398. packed_cell_t *cell, *next;
  1399. cell = queue->head;
  1400. while (cell) {
  1401. next = cell->next;
  1402. packed_cell_free(cell);
  1403. cell = next;
  1404. }
  1405. queue->head = queue->tail = NULL;
  1406. queue->n = 0;
  1407. }
  1408. /** Extract and return the cell at the head of <b>queue</b>; return NULL if
  1409. * <b>queue</b> is empty. */
  1410. static INLINE packed_cell_t *
  1411. cell_queue_pop(cell_queue_t *queue)
  1412. {
  1413. packed_cell_t *cell = queue->head;
  1414. if (!cell)
  1415. return NULL;
  1416. queue->head = cell->next;
  1417. if (cell == queue->tail) {
  1418. tor_assert(!queue->head);
  1419. queue->tail = NULL;
  1420. }
  1421. --queue->n;
  1422. return cell;
  1423. }
  1424. /** Return a pointer to the "next_active_on_{n,p}_conn" pointer of <b>circ</b>,
  1425. * depending on whether <b>conn</b> matches n_conn or p_conn. */
  1426. static INLINE circuit_t **
  1427. next_circ_on_conn_p(circuit_t *circ, or_connection_t *conn)
  1428. {
  1429. tor_assert(circ);
  1430. tor_assert(conn);
  1431. if (conn == circ->n_conn) {
  1432. return &circ->next_active_on_n_conn;
  1433. } else {
  1434. or_circuit_t *orcirc = TO_OR_CIRCUIT(circ);
  1435. tor_assert(conn == orcirc->p_conn);
  1436. return &orcirc->next_active_on_p_conn;
  1437. }
  1438. }
  1439. /** Return a pointer to the "prev_active_on_{n,p}_conn" pointer of <b>circ</b>,
  1440. * depending on whether <b>conn</b> matches n_conn or p_conn. */
  1441. static INLINE circuit_t **
  1442. prev_circ_on_conn_p(circuit_t *circ, or_connection_t *conn)
  1443. {
  1444. tor_assert(circ);
  1445. tor_assert(conn);
  1446. if (conn == circ->n_conn) {
  1447. return &circ->prev_active_on_n_conn;
  1448. } else {
  1449. or_circuit_t *orcirc = TO_OR_CIRCUIT(circ);
  1450. tor_assert(conn == orcirc->p_conn);
  1451. return &orcirc->prev_active_on_p_conn;
  1452. }
  1453. }
  1454. /** Add <b>circ</b> to the list of circuits with pending cells on
  1455. * <b>conn</b>. No effect if <b>circ</b> is already unlinked. */
  1456. void
  1457. make_circuit_active_on_conn(circuit_t *circ, or_connection_t *conn)
  1458. {
  1459. circuit_t **nextp = next_circ_on_conn_p(circ, conn);
  1460. circuit_t **prevp = prev_circ_on_conn_p(circ, conn);
  1461. if (*nextp && *prevp) {
  1462. /* Already active. */
  1463. return;
  1464. }
  1465. if (! conn->active_circuits) {
  1466. conn->active_circuits = circ;
  1467. *prevp = *nextp = circ;
  1468. } else {
  1469. circuit_t *head = conn->active_circuits;
  1470. circuit_t *old_tail = *prev_circ_on_conn_p(head, conn);
  1471. *next_circ_on_conn_p(old_tail, conn) = circ;
  1472. *nextp = head;
  1473. *prev_circ_on_conn_p(head, conn) = circ;
  1474. *prevp = old_tail;
  1475. }
  1476. assert_active_circuits_ok_paranoid(conn);
  1477. }
  1478. /** Remove <b>circ</b> to the list of circuits with pending cells on
  1479. * <b>conn</b>. No effect if <b>circ</b> is already unlinked. */
  1480. void
  1481. make_circuit_inactive_on_conn(circuit_t *circ, or_connection_t *conn)
  1482. {
  1483. circuit_t **nextp = next_circ_on_conn_p(circ, conn);
  1484. circuit_t **prevp = prev_circ_on_conn_p(circ, conn);
  1485. circuit_t *next = *nextp, *prev = *prevp;
  1486. if (!next && !prev) {
  1487. /* Already inactive. */
  1488. return;
  1489. }
  1490. tor_assert(next && prev);
  1491. tor_assert(*prev_circ_on_conn_p(next, conn) == circ);
  1492. tor_assert(*next_circ_on_conn_p(prev, conn) == circ);
  1493. if (next == circ) {
  1494. conn->active_circuits = NULL;
  1495. } else {
  1496. *prev_circ_on_conn_p(next, conn) = prev;
  1497. *next_circ_on_conn_p(prev, conn) = next;
  1498. if (conn->active_circuits == circ)
  1499. conn->active_circuits = next;
  1500. }
  1501. *prevp = *nextp = NULL;
  1502. assert_active_circuits_ok_paranoid(conn);
  1503. }
  1504. /** Remove all circuits from the list of circuits with pending cells on
  1505. * <b>conn</b>. */
  1506. void
  1507. connection_or_unlink_all_active_circs(or_connection_t *orconn)
  1508. {
  1509. circuit_t *head = orconn->active_circuits;
  1510. circuit_t *cur = head;
  1511. if (! head)
  1512. return;
  1513. do {
  1514. circuit_t *next = *next_circ_on_conn_p(cur, orconn);
  1515. *prev_circ_on_conn_p(cur, orconn) = NULL;
  1516. *next_circ_on_conn_p(cur, orconn) = NULL;
  1517. cur = next;
  1518. } while (cur != head);
  1519. orconn->active_circuits = NULL;
  1520. }
  1521. /** Block (if <b>block</b> is true) or unblock (if <b>block</b> is false)
  1522. * every edge connection that is using <b>circ</b> to write to <b>orconn</b>,
  1523. * and start or stop reading as appropriate. */
  1524. static void
  1525. set_streams_blocked_on_circ(circuit_t *circ, or_connection_t *orconn,
  1526. int block)
  1527. {
  1528. edge_connection_t *edge = NULL;
  1529. if (circ->n_conn == orconn) {
  1530. circ->streams_blocked_on_n_conn = block;
  1531. if (CIRCUIT_IS_ORIGIN(circ))
  1532. edge = TO_ORIGIN_CIRCUIT(circ)->p_streams;
  1533. } else {
  1534. circ->streams_blocked_on_p_conn = block;
  1535. tor_assert(!CIRCUIT_IS_ORIGIN(circ));
  1536. edge = TO_OR_CIRCUIT(circ)->n_streams;
  1537. }
  1538. for (; edge; edge = edge->next_stream) {
  1539. connection_t *conn = TO_CONN(edge);
  1540. edge->edge_blocked_on_circ = block;
  1541. if (!conn->read_event) {
  1542. /* This connection is a placeholder for something; probably a DNS
  1543. * request. It can't actually stop or start reading.*/
  1544. continue;
  1545. }
  1546. if (block) {
  1547. if (connection_is_reading(conn))
  1548. connection_stop_reading(conn);
  1549. } else {
  1550. /* Is this right? */
  1551. if (!connection_is_reading(conn))
  1552. connection_start_reading(conn);
  1553. }
  1554. }
  1555. }
  1556. /** Pull as many cells as possible (but no more than <b>max</b>) from the
  1557. * queue of the first active circuit on <b>conn</b>, and write then to
  1558. * <b>conn</b>-&gt;outbuf. Return the number of cells written. Advance
  1559. * the active circuit pointer to the next active circuit in the ring. */
  1560. int
  1561. connection_or_flush_from_first_active_circuit(or_connection_t *conn, int max,
  1562. time_t now)
  1563. {
  1564. int n_flushed;
  1565. cell_queue_t *queue;
  1566. circuit_t *circ;
  1567. int streams_blocked;
  1568. circ = conn->active_circuits;
  1569. if (!circ) return 0;
  1570. assert_active_circuits_ok_paranoid(conn);
  1571. if (circ->n_conn == conn) {
  1572. queue = &circ->n_conn_cells;
  1573. streams_blocked = circ->streams_blocked_on_n_conn;
  1574. } else {
  1575. queue = &TO_OR_CIRCUIT(circ)->p_conn_cells;
  1576. streams_blocked = circ->streams_blocked_on_p_conn;
  1577. }
  1578. tor_assert(*next_circ_on_conn_p(circ,conn));
  1579. for (n_flushed = 0; n_flushed < max && queue->head; ) {
  1580. packed_cell_t *cell = cell_queue_pop(queue);
  1581. tor_assert(*next_circ_on_conn_p(circ,conn));
  1582. connection_write_to_buf(cell->body, CELL_NETWORK_SIZE, TO_CONN(conn));
  1583. packed_cell_free(cell);
  1584. ++n_flushed;
  1585. if (circ != conn->active_circuits) {
  1586. /* If this happens, the current circuit just got made inactive by
  1587. * a call in connection_write_to_buf(). That's nothing to worry about:
  1588. * circuit_make_inactive_on_conn() already advanced conn->active_circuits
  1589. * for us.
  1590. */
  1591. assert_active_circuits_ok_paranoid(conn);
  1592. goto done;
  1593. }
  1594. }
  1595. tor_assert(*next_circ_on_conn_p(circ,conn));
  1596. assert_active_circuits_ok_paranoid(conn);
  1597. conn->active_circuits = *next_circ_on_conn_p(circ, conn);
  1598. /* Is the cell queue low enough to unblock all the streams that are waiting
  1599. * to write to this circuit? */
  1600. if (streams_blocked && queue->n <= CELL_QUEUE_LOWWATER_SIZE)
  1601. set_streams_blocked_on_circ(circ, conn, 0); /* unblock streams */
  1602. /* Did we just ran out of cells on this queue? */
  1603. if (queue->n == 0) {
  1604. log_debug(LD_GENERAL, "Made a circuit inactive.");
  1605. make_circuit_inactive_on_conn(circ, conn);
  1606. }
  1607. done:
  1608. if (n_flushed)
  1609. conn->timestamp_last_added_nonpadding = now;
  1610. return n_flushed;
  1611. }
  1612. /** Add <b>cell</b> to the queue of <b>circ</b> writing to <b>orconn</b>
  1613. * transmitting in <b>direction</b>. */
  1614. void
  1615. append_cell_to_circuit_queue(circuit_t *circ, or_connection_t *orconn,
  1616. cell_t *cell, cell_direction_t direction)
  1617. {
  1618. cell_queue_t *queue;
  1619. int streams_blocked;
  1620. if (direction == CELL_DIRECTION_OUT) {
  1621. queue = &circ->n_conn_cells;
  1622. streams_blocked = circ->streams_blocked_on_n_conn;
  1623. } else {
  1624. or_circuit_t *orcirc = TO_OR_CIRCUIT(circ);
  1625. queue = &orcirc->p_conn_cells;
  1626. streams_blocked = circ->streams_blocked_on_p_conn;
  1627. }
  1628. if (cell->command == CELL_RELAY_EARLY && orconn->link_proto < 2) {
  1629. /* V1 connections don't understand RELAY_EARLY. */
  1630. cell->command = CELL_RELAY;
  1631. }
  1632. cell_queue_append_packed_copy(queue, cell);
  1633. /* If we have too many cells on the circuit, we should stop reading from
  1634. * the edge streams for a while. */
  1635. if (!streams_blocked && queue->n >= CELL_QUEUE_HIGHWATER_SIZE)
  1636. set_streams_blocked_on_circ(circ, orconn, 1); /* block streams */
  1637. if (queue->n == 1) {
  1638. /* This was the first cell added to the queue. We need to make this
  1639. * circuit active. */
  1640. log_debug(LD_GENERAL, "Made a circuit active.");
  1641. make_circuit_active_on_conn(circ, orconn);
  1642. }
  1643. if (! buf_datalen(orconn->_base.outbuf)) {
  1644. /* There is no data at all waiting to be sent on the outbuf. Add a
  1645. * cell, so that we can notice when it gets flushed, flushed_some can
  1646. * get called, and we can start putting more data onto the buffer then.
  1647. */
  1648. log_debug(LD_GENERAL, "Primed a buffer.");
  1649. connection_or_flush_from_first_active_circuit(orconn, 1, approx_time());
  1650. }
  1651. }
  1652. /** Append an encoded value of <b>addr</b> to <b>payload_out</b>, which must
  1653. * have at least 18 bytes of free space. The encoding is, as specified in
  1654. * tor-spec.txt:
  1655. * RESOLVED_TYPE_IPV4 or RESOLVED_TYPE_IPV6 [1 byte]
  1656. * LENGTH [1 byte]
  1657. * ADDRESS [length bytes]
  1658. * Return the number of bytes added, or -1 on error */
  1659. int
  1660. append_address_to_payload(char *payload_out, const tor_addr_t *addr)
  1661. {
  1662. uint32_t a;
  1663. switch (tor_addr_family(addr)) {
  1664. case AF_INET:
  1665. payload_out[0] = RESOLVED_TYPE_IPV4;
  1666. payload_out[1] = 4;
  1667. a = tor_addr_to_ipv4n(addr);
  1668. memcpy(payload_out+2, &a, 4);
  1669. return 6;
  1670. case AF_INET6:
  1671. payload_out[0] = RESOLVED_TYPE_IPV6;
  1672. payload_out[1] = 16;
  1673. memcpy(payload_out+2, tor_addr_to_in6_addr8(addr), 16);
  1674. return 18;
  1675. case AF_UNSPEC:
  1676. default:
  1677. return -1;
  1678. }
  1679. }
  1680. /** Given <b>payload_len</b> bytes at <b>payload</b>, starting with an address
  1681. * encoded as by append_address_to_payload(), try to decode the address into
  1682. * *<b>addr_out</b>. Return the next byte in the payload after the address on
  1683. * success, or NULL on failure. */
  1684. const char *
  1685. decode_address_from_payload(tor_addr_t *addr_out, const char *payload,
  1686. int payload_len)
  1687. {
  1688. if (payload_len < 2)
  1689. return NULL;
  1690. if (payload_len < 2+(uint8_t)payload[1])
  1691. return NULL;
  1692. switch (payload[0]) {
  1693. case RESOLVED_TYPE_IPV4:
  1694. if (payload[1] != 4)
  1695. return NULL;
  1696. tor_addr_from_ipv4n(addr_out, get_uint32(payload+2));
  1697. break;
  1698. case RESOLVED_TYPE_IPV6:
  1699. if (payload[1] != 16)
  1700. return NULL;
  1701. tor_addr_from_ipv6_bytes(addr_out, payload+2);
  1702. break;
  1703. default:
  1704. tor_addr_make_unspec(addr_out);
  1705. break;
  1706. }
  1707. return payload + 2 + (uint8_t)payload[1];
  1708. }
  1709. /** Fail with an assert if the active circuits ring on <b>orconn</b> is
  1710. * corrupt. */
  1711. void
  1712. assert_active_circuits_ok(or_connection_t *orconn)
  1713. {
  1714. circuit_t *head = orconn->active_circuits;
  1715. circuit_t *cur = head;
  1716. if (! head)
  1717. return;
  1718. do {
  1719. circuit_t *next = *next_circ_on_conn_p(cur, orconn);
  1720. circuit_t *prev = *prev_circ_on_conn_p(cur, orconn);
  1721. tor_assert(next);
  1722. tor_assert(prev);
  1723. tor_assert(*next_circ_on_conn_p(prev, orconn) == cur);
  1724. tor_assert(*prev_circ_on_conn_p(next, orconn) == cur);
  1725. cur = next;
  1726. } while (cur != head);
  1727. }