connection_edge.c 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2013, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file connection_edge.c
  8. * \brief Handle edge streams.
  9. **/
  10. #define CONNECTION_EDGE_PRIVATE
  11. #include "or.h"
  12. #include "addressmap.h"
  13. #include "buffers.h"
  14. #include "channel.h"
  15. #include "circuitlist.h"
  16. #include "circuituse.h"
  17. #include "config.h"
  18. #include "connection.h"
  19. #include "connection_edge.h"
  20. #include "connection_or.h"
  21. #include "control.h"
  22. #include "dns.h"
  23. #include "dnsserv.h"
  24. #include "dirserv.h"
  25. #include "hibernate.h"
  26. #include "main.h"
  27. #include "nodelist.h"
  28. #include "policies.h"
  29. #include "reasons.h"
  30. #include "relay.h"
  31. #include "rendclient.h"
  32. #include "rendcommon.h"
  33. #include "rendservice.h"
  34. #include "rephist.h"
  35. #include "router.h"
  36. #include "routerlist.h"
  37. #include "routerset.h"
  38. #include "circuitbuild.h"
  39. #ifdef HAVE_LINUX_TYPES_H
  40. #include <linux/types.h>
  41. #endif
  42. #ifdef HAVE_LINUX_NETFILTER_IPV4_H
  43. #include <linux/netfilter_ipv4.h>
  44. #define TRANS_NETFILTER
  45. #endif
  46. #if defined(HAVE_NET_IF_H) && defined(HAVE_NET_PFVAR_H)
  47. #include <net/if.h>
  48. #include <net/pfvar.h>
  49. #define TRANS_PF
  50. #endif
  51. #define SOCKS4_GRANTED 90
  52. #define SOCKS4_REJECT 91
  53. static int connection_ap_handshake_process_socks(entry_connection_t *conn);
  54. static int connection_ap_process_natd(entry_connection_t *conn);
  55. static int connection_exit_connect_dir(edge_connection_t *exitconn);
  56. static int consider_plaintext_ports(entry_connection_t *conn, uint16_t port);
  57. static int connection_ap_supports_optimistic_data(const entry_connection_t *);
  58. /** An AP stream has failed/finished. If it hasn't already sent back
  59. * a socks reply, send one now (based on endreason). Also set
  60. * has_sent_end to 1, and mark the conn.
  61. */
  62. void
  63. connection_mark_unattached_ap_(entry_connection_t *conn, int endreason,
  64. int line, const char *file)
  65. {
  66. connection_t *base_conn = ENTRY_TO_CONN(conn);
  67. edge_connection_t *edge_conn = ENTRY_TO_EDGE_CONN(conn);
  68. tor_assert(base_conn->type == CONN_TYPE_AP);
  69. ENTRY_TO_EDGE_CONN(conn)->edge_has_sent_end = 1; /* no circ yet */
  70. /* If this is a rendezvous stream and it is failing without ever
  71. * being attached to a circuit, assume that an attempt to connect to
  72. * the destination hidden service has just ended.
  73. *
  74. * XXXX This condition doesn't limit to only streams failing
  75. * without ever being attached. That sloppiness should be harmless,
  76. * but we should fix it someday anyway. */
  77. if ((edge_conn->on_circuit != NULL || edge_conn->edge_has_sent_end) &&
  78. connection_edge_is_rendezvous_stream(edge_conn)) {
  79. rend_client_note_connection_attempt_ended(
  80. edge_conn->rend_data->onion_address);
  81. }
  82. if (base_conn->marked_for_close) {
  83. /* This call will warn as appropriate. */
  84. connection_mark_for_close_(base_conn, line, file);
  85. return;
  86. }
  87. if (!conn->socks_request->has_finished) {
  88. if (endreason & END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED)
  89. log_warn(LD_BUG,
  90. "stream (marked at %s:%d) sending two socks replies?",
  91. file, line);
  92. if (SOCKS_COMMAND_IS_CONNECT(conn->socks_request->command))
  93. connection_ap_handshake_socks_reply(conn, NULL, 0, endreason);
  94. else if (SOCKS_COMMAND_IS_RESOLVE(conn->socks_request->command))
  95. connection_ap_handshake_socks_resolved(conn,
  96. RESOLVED_TYPE_ERROR_TRANSIENT,
  97. 0, NULL, -1, -1);
  98. else /* unknown or no handshake at all. send no response. */
  99. conn->socks_request->has_finished = 1;
  100. }
  101. connection_mark_and_flush_(base_conn, line, file);
  102. ENTRY_TO_EDGE_CONN(conn)->end_reason = endreason;
  103. }
  104. /** There was an EOF. Send an end and mark the connection for close.
  105. */
  106. int
  107. connection_edge_reached_eof(edge_connection_t *conn)
  108. {
  109. if (connection_get_inbuf_len(TO_CONN(conn)) &&
  110. connection_state_is_open(TO_CONN(conn))) {
  111. /* it still has stuff to process. don't let it die yet. */
  112. return 0;
  113. }
  114. log_info(LD_EDGE,"conn (fd "TOR_SOCKET_T_FORMAT") reached eof. Closing.",
  115. conn->base_.s);
  116. if (!conn->base_.marked_for_close) {
  117. /* only mark it if not already marked. it's possible to
  118. * get the 'end' right around when the client hangs up on us. */
  119. connection_edge_end(conn, END_STREAM_REASON_DONE);
  120. if (conn->base_.type == CONN_TYPE_AP) {
  121. /* eof, so don't send a socks reply back */
  122. if (EDGE_TO_ENTRY_CONN(conn)->socks_request)
  123. EDGE_TO_ENTRY_CONN(conn)->socks_request->has_finished = 1;
  124. }
  125. connection_mark_for_close(TO_CONN(conn));
  126. }
  127. return 0;
  128. }
  129. /** Handle new bytes on conn->inbuf based on state:
  130. * - If it's waiting for socks info, try to read another step of the
  131. * socks handshake out of conn->inbuf.
  132. * - If it's waiting for the original destination, fetch it.
  133. * - If it's open, then package more relay cells from the stream.
  134. * - Else, leave the bytes on inbuf alone for now.
  135. *
  136. * Mark and return -1 if there was an unexpected error with the conn,
  137. * else return 0.
  138. */
  139. int
  140. connection_edge_process_inbuf(edge_connection_t *conn, int package_partial)
  141. {
  142. tor_assert(conn);
  143. switch (conn->base_.state) {
  144. case AP_CONN_STATE_SOCKS_WAIT:
  145. if (connection_ap_handshake_process_socks(EDGE_TO_ENTRY_CONN(conn)) <0) {
  146. /* already marked */
  147. return -1;
  148. }
  149. return 0;
  150. case AP_CONN_STATE_NATD_WAIT:
  151. if (connection_ap_process_natd(EDGE_TO_ENTRY_CONN(conn)) < 0) {
  152. /* already marked */
  153. return -1;
  154. }
  155. return 0;
  156. case AP_CONN_STATE_OPEN:
  157. case EXIT_CONN_STATE_OPEN:
  158. if (connection_edge_package_raw_inbuf(conn, package_partial, NULL) < 0) {
  159. /* (We already sent an end cell if possible) */
  160. connection_mark_for_close(TO_CONN(conn));
  161. return -1;
  162. }
  163. return 0;
  164. case AP_CONN_STATE_CONNECT_WAIT:
  165. if (connection_ap_supports_optimistic_data(EDGE_TO_ENTRY_CONN(conn))) {
  166. log_info(LD_EDGE,
  167. "data from edge while in '%s' state. Sending it anyway. "
  168. "package_partial=%d, buflen=%ld",
  169. conn_state_to_string(conn->base_.type, conn->base_.state),
  170. package_partial,
  171. (long)connection_get_inbuf_len(TO_CONN(conn)));
  172. if (connection_edge_package_raw_inbuf(conn, package_partial, NULL)<0) {
  173. /* (We already sent an end cell if possible) */
  174. connection_mark_for_close(TO_CONN(conn));
  175. return -1;
  176. }
  177. return 0;
  178. }
  179. /* Fall through if the connection is on a circuit without optimistic
  180. * data support. */
  181. case EXIT_CONN_STATE_CONNECTING:
  182. case AP_CONN_STATE_RENDDESC_WAIT:
  183. case AP_CONN_STATE_CIRCUIT_WAIT:
  184. case AP_CONN_STATE_RESOLVE_WAIT:
  185. case AP_CONN_STATE_CONTROLLER_WAIT:
  186. log_info(LD_EDGE,
  187. "data from edge while in '%s' state. Leaving it on buffer.",
  188. conn_state_to_string(conn->base_.type, conn->base_.state));
  189. return 0;
  190. }
  191. log_warn(LD_BUG,"Got unexpected state %d. Closing.",conn->base_.state);
  192. tor_fragile_assert();
  193. connection_edge_end(conn, END_STREAM_REASON_INTERNAL);
  194. connection_mark_for_close(TO_CONN(conn));
  195. return -1;
  196. }
  197. /** This edge needs to be closed, because its circuit has closed.
  198. * Mark it for close and return 0.
  199. */
  200. int
  201. connection_edge_destroy(circid_t circ_id, edge_connection_t *conn)
  202. {
  203. if (!conn->base_.marked_for_close) {
  204. log_info(LD_EDGE, "CircID %u: At an edge. Marking connection for close.",
  205. (unsigned) circ_id);
  206. if (conn->base_.type == CONN_TYPE_AP) {
  207. entry_connection_t *entry_conn = EDGE_TO_ENTRY_CONN(conn);
  208. connection_mark_unattached_ap(entry_conn, END_STREAM_REASON_DESTROY);
  209. control_event_stream_bandwidth(conn);
  210. control_event_stream_status(entry_conn, STREAM_EVENT_CLOSED,
  211. END_STREAM_REASON_DESTROY);
  212. conn->end_reason |= END_STREAM_REASON_FLAG_ALREADY_SENT_CLOSED;
  213. } else {
  214. /* closing the circuit, nothing to send an END to */
  215. conn->edge_has_sent_end = 1;
  216. conn->end_reason = END_STREAM_REASON_DESTROY;
  217. conn->end_reason |= END_STREAM_REASON_FLAG_ALREADY_SENT_CLOSED;
  218. connection_mark_and_flush(TO_CONN(conn));
  219. }
  220. }
  221. conn->cpath_layer = NULL;
  222. conn->on_circuit = NULL;
  223. return 0;
  224. }
  225. /** Send a raw end cell to the stream with ID <b>stream_id</b> out over the
  226. * <b>circ</b> towards the hop identified with <b>cpath_layer</b>. If this
  227. * is not a client connection, set the relay end cell's reason for closing
  228. * as <b>reason</b> */
  229. static int
  230. relay_send_end_cell_from_edge(streamid_t stream_id, circuit_t *circ,
  231. uint8_t reason, crypt_path_t *cpath_layer)
  232. {
  233. char payload[1];
  234. if (CIRCUIT_PURPOSE_IS_CLIENT(circ->purpose)) {
  235. /* Never send the server an informative reason code; it doesn't need to
  236. * know why the client stream is failing. */
  237. reason = END_STREAM_REASON_MISC;
  238. }
  239. payload[0] = (char) reason;
  240. return relay_send_command_from_edge(stream_id, circ, RELAY_COMMAND_END,
  241. payload, 1, cpath_layer);
  242. }
  243. /** Send a relay end cell from stream <b>conn</b> down conn's circuit, and
  244. * remember that we've done so. If this is not a client connection, set the
  245. * relay end cell's reason for closing as <b>reason</b>.
  246. *
  247. * Return -1 if this function has already been called on this conn,
  248. * else return 0.
  249. */
  250. int
  251. connection_edge_end(edge_connection_t *conn, uint8_t reason)
  252. {
  253. char payload[RELAY_PAYLOAD_SIZE];
  254. size_t payload_len=1;
  255. circuit_t *circ;
  256. uint8_t control_reason = reason;
  257. if (conn->edge_has_sent_end) {
  258. log_warn(LD_BUG,"(Harmless.) Calling connection_edge_end (reason %d) "
  259. "on an already ended stream?", reason);
  260. tor_fragile_assert();
  261. return -1;
  262. }
  263. if (conn->base_.marked_for_close) {
  264. log_warn(LD_BUG,
  265. "called on conn that's already marked for close at %s:%d.",
  266. conn->base_.marked_for_close_file, conn->base_.marked_for_close);
  267. return 0;
  268. }
  269. circ = circuit_get_by_edge_conn(conn);
  270. if (circ && CIRCUIT_PURPOSE_IS_CLIENT(circ->purpose)) {
  271. /* If this is a client circuit, don't send the server an informative
  272. * reason code; it doesn't need to know why the client stream is
  273. * failing. */
  274. reason = END_STREAM_REASON_MISC;
  275. }
  276. payload[0] = (char)reason;
  277. if (reason == END_STREAM_REASON_EXITPOLICY &&
  278. !connection_edge_is_rendezvous_stream(conn)) {
  279. int addrlen;
  280. if (tor_addr_family(&conn->base_.addr) == AF_INET) {
  281. set_uint32(payload+1, tor_addr_to_ipv4n(&conn->base_.addr));
  282. addrlen = 4;
  283. } else {
  284. memcpy(payload+1, tor_addr_to_in6_addr8(&conn->base_.addr), 16);
  285. addrlen = 16;
  286. }
  287. set_uint32(payload+1+addrlen, htonl(dns_clip_ttl(conn->address_ttl)));
  288. payload_len += 4+addrlen;
  289. }
  290. if (circ && !circ->marked_for_close) {
  291. log_debug(LD_EDGE,"Sending end on conn (fd "TOR_SOCKET_T_FORMAT").",
  292. conn->base_.s);
  293. connection_edge_send_command(conn, RELAY_COMMAND_END,
  294. payload, payload_len);
  295. } else {
  296. log_debug(LD_EDGE,"No circ to send end on conn "
  297. "(fd "TOR_SOCKET_T_FORMAT").",
  298. conn->base_.s);
  299. }
  300. conn->edge_has_sent_end = 1;
  301. conn->end_reason = control_reason;
  302. return 0;
  303. }
  304. /** An error has just occurred on an operation on an edge connection
  305. * <b>conn</b>. Extract the errno; convert it to an end reason, and send an
  306. * appropriate relay end cell to the other end of the connection's circuit.
  307. **/
  308. int
  309. connection_edge_end_errno(edge_connection_t *conn)
  310. {
  311. uint8_t reason;
  312. tor_assert(conn);
  313. reason = errno_to_stream_end_reason(tor_socket_errno(conn->base_.s));
  314. return connection_edge_end(conn, reason);
  315. }
  316. /** We just wrote some data to <b>conn</b>; act appropriately.
  317. *
  318. * (That is, if it's open, consider sending a stream-level sendme cell if we
  319. * have just flushed enough.)
  320. */
  321. int
  322. connection_edge_flushed_some(edge_connection_t *conn)
  323. {
  324. switch (conn->base_.state) {
  325. case AP_CONN_STATE_OPEN:
  326. case EXIT_CONN_STATE_OPEN:
  327. connection_edge_consider_sending_sendme(conn);
  328. break;
  329. }
  330. return 0;
  331. }
  332. /** Connection <b>conn</b> has finished writing and has no bytes left on
  333. * its outbuf.
  334. *
  335. * If it's in state 'open', stop writing, consider responding with a
  336. * sendme, and return.
  337. * Otherwise, stop writing and return.
  338. *
  339. * If <b>conn</b> is broken, mark it for close and return -1, else
  340. * return 0.
  341. */
  342. int
  343. connection_edge_finished_flushing(edge_connection_t *conn)
  344. {
  345. tor_assert(conn);
  346. switch (conn->base_.state) {
  347. case AP_CONN_STATE_OPEN:
  348. case EXIT_CONN_STATE_OPEN:
  349. connection_edge_consider_sending_sendme(conn);
  350. return 0;
  351. case AP_CONN_STATE_SOCKS_WAIT:
  352. case AP_CONN_STATE_NATD_WAIT:
  353. case AP_CONN_STATE_RENDDESC_WAIT:
  354. case AP_CONN_STATE_CIRCUIT_WAIT:
  355. case AP_CONN_STATE_CONNECT_WAIT:
  356. case AP_CONN_STATE_CONTROLLER_WAIT:
  357. case AP_CONN_STATE_RESOLVE_WAIT:
  358. return 0;
  359. default:
  360. log_warn(LD_BUG, "Called in unexpected state %d.",conn->base_.state);
  361. tor_fragile_assert();
  362. return -1;
  363. }
  364. return 0;
  365. }
  366. /** Longest size for the relay payload of a RELAY_CONNECTED cell that we're
  367. * able to generate. */
  368. /* 4 zero bytes; 1 type byte; 16 byte IPv6 address; 4 byte TTL. */
  369. #define MAX_CONNECTED_CELL_PAYLOAD_LEN 25
  370. /** Set the buffer at <b>payload_out</b> -- which must have at least
  371. * MAX_CONNECTED_CELL_PAYLOAD_LEN bytes available -- to the body of a
  372. * RELAY_CONNECTED cell indicating that we have connected to <b>addr</b>, and
  373. * that the name resolution that led us to <b>addr</b> will be valid for
  374. * <b>ttl</b> seconds. Return -1 on error, or the number of bytes used on
  375. * success. */
  376. /* private */int
  377. connected_cell_format_payload(uint8_t *payload_out,
  378. const tor_addr_t *addr,
  379. uint32_t ttl)
  380. {
  381. const sa_family_t family = tor_addr_family(addr);
  382. int connected_payload_len;
  383. /* should be needless */
  384. memset(payload_out, 0, MAX_CONNECTED_CELL_PAYLOAD_LEN);
  385. if (family == AF_INET) {
  386. set_uint32(payload_out, tor_addr_to_ipv4n(addr));
  387. connected_payload_len = 4;
  388. } else if (family == AF_INET6) {
  389. set_uint32(payload_out, 0);
  390. set_uint8(payload_out + 4, 6);
  391. memcpy(payload_out + 5, tor_addr_to_in6_addr8(addr), 16);
  392. connected_payload_len = 21;
  393. } else {
  394. return -1;
  395. }
  396. set_uint32(payload_out + connected_payload_len, htonl(dns_clip_ttl(ttl)));
  397. connected_payload_len += 4;
  398. tor_assert(connected_payload_len <= MAX_CONNECTED_CELL_PAYLOAD_LEN);
  399. return connected_payload_len;
  400. }
  401. /** Connected handler for exit connections: start writing pending
  402. * data, deliver 'CONNECTED' relay cells as appropriate, and check
  403. * any pending data that may have been received. */
  404. int
  405. connection_edge_finished_connecting(edge_connection_t *edge_conn)
  406. {
  407. connection_t *conn;
  408. tor_assert(edge_conn);
  409. tor_assert(edge_conn->base_.type == CONN_TYPE_EXIT);
  410. conn = TO_CONN(edge_conn);
  411. tor_assert(conn->state == EXIT_CONN_STATE_CONNECTING);
  412. log_info(LD_EXIT,"Exit connection to %s:%u (%s) established.",
  413. escaped_safe_str(conn->address), conn->port,
  414. safe_str(fmt_and_decorate_addr(&conn->addr)));
  415. rep_hist_note_exit_stream_opened(conn->port);
  416. conn->state = EXIT_CONN_STATE_OPEN;
  417. IF_HAS_NO_BUFFEREVENT(conn)
  418. connection_watch_events(conn, READ_EVENT); /* stop writing, keep reading */
  419. if (connection_get_outbuf_len(conn)) /* in case there are any queued relay
  420. * cells */
  421. connection_start_writing(conn);
  422. /* deliver a 'connected' relay cell back through the circuit. */
  423. if (connection_edge_is_rendezvous_stream(edge_conn)) {
  424. if (connection_edge_send_command(edge_conn,
  425. RELAY_COMMAND_CONNECTED, NULL, 0) < 0)
  426. return 0; /* circuit is closed, don't continue */
  427. } else {
  428. uint8_t connected_payload[MAX_CONNECTED_CELL_PAYLOAD_LEN];
  429. int connected_payload_len =
  430. connected_cell_format_payload(connected_payload, &conn->addr,
  431. edge_conn->address_ttl);
  432. if (connected_payload_len < 0)
  433. return -1;
  434. if (connection_edge_send_command(edge_conn,
  435. RELAY_COMMAND_CONNECTED,
  436. (char*)connected_payload, connected_payload_len) < 0)
  437. return 0; /* circuit is closed, don't continue */
  438. }
  439. tor_assert(edge_conn->package_window > 0);
  440. /* in case the server has written anything */
  441. return connection_edge_process_inbuf(edge_conn, 1);
  442. }
  443. /** Common code to connection_(ap|exit)_about_to_close. */
  444. static void
  445. connection_edge_about_to_close(edge_connection_t *edge_conn)
  446. {
  447. if (!edge_conn->edge_has_sent_end) {
  448. connection_t *conn = TO_CONN(edge_conn);
  449. log_warn(LD_BUG, "(Harmless.) Edge connection (marked at %s:%d) "
  450. "hasn't sent end yet?",
  451. conn->marked_for_close_file, conn->marked_for_close);
  452. tor_fragile_assert();
  453. }
  454. }
  455. /** Called when we're about to finally unlink and free an AP (client)
  456. * connection: perform necessary accounting and cleanup */
  457. void
  458. connection_ap_about_to_close(entry_connection_t *entry_conn)
  459. {
  460. circuit_t *circ;
  461. edge_connection_t *edge_conn = ENTRY_TO_EDGE_CONN(entry_conn);
  462. connection_t *conn = ENTRY_TO_CONN(entry_conn);
  463. if (entry_conn->socks_request->has_finished == 0) {
  464. /* since conn gets removed right after this function finishes,
  465. * there's no point trying to send back a reply at this point. */
  466. log_warn(LD_BUG,"Closing stream (marked at %s:%d) without sending"
  467. " back a socks reply.",
  468. conn->marked_for_close_file, conn->marked_for_close);
  469. }
  470. if (!edge_conn->end_reason) {
  471. log_warn(LD_BUG,"Closing stream (marked at %s:%d) without having"
  472. " set end_reason.",
  473. conn->marked_for_close_file, conn->marked_for_close);
  474. }
  475. if (entry_conn->dns_server_request) {
  476. log_warn(LD_BUG,"Closing stream (marked at %s:%d) without having"
  477. " replied to DNS request.",
  478. conn->marked_for_close_file, conn->marked_for_close);
  479. dnsserv_reject_request(entry_conn);
  480. }
  481. control_event_stream_bandwidth(edge_conn);
  482. control_event_stream_status(entry_conn, STREAM_EVENT_CLOSED,
  483. edge_conn->end_reason);
  484. circ = circuit_get_by_edge_conn(edge_conn);
  485. if (circ)
  486. circuit_detach_stream(circ, edge_conn);
  487. }
  488. /** Called when we're about to finally unlink and free an exit
  489. * connection: perform necessary accounting and cleanup */
  490. void
  491. connection_exit_about_to_close(edge_connection_t *edge_conn)
  492. {
  493. circuit_t *circ;
  494. connection_t *conn = TO_CONN(edge_conn);
  495. connection_edge_about_to_close(edge_conn);
  496. circ = circuit_get_by_edge_conn(edge_conn);
  497. if (circ)
  498. circuit_detach_stream(circ, edge_conn);
  499. if (conn->state == EXIT_CONN_STATE_RESOLVING) {
  500. connection_dns_remove(edge_conn);
  501. }
  502. }
  503. /** Define a schedule for how long to wait between retrying
  504. * application connections. Rather than waiting a fixed amount of
  505. * time between each retry, we wait 10 seconds each for the first
  506. * two tries, and 15 seconds for each retry after
  507. * that. Hopefully this will improve the expected user experience. */
  508. static int
  509. compute_retry_timeout(entry_connection_t *conn)
  510. {
  511. int timeout = get_options()->CircuitStreamTimeout;
  512. if (timeout) /* if our config options override the default, use them */
  513. return timeout;
  514. if (conn->num_socks_retries < 2) /* try 0 and try 1 */
  515. return 10;
  516. return 15;
  517. }
  518. /** Find all general-purpose AP streams waiting for a response that sent their
  519. * begin/resolve cell too long ago. Detach from their current circuit, and
  520. * mark their current circuit as unsuitable for new streams. Then call
  521. * connection_ap_handshake_attach_circuit() to attach to a new circuit (if
  522. * available) or launch a new one.
  523. *
  524. * For rendezvous streams, simply give up after SocksTimeout seconds (with no
  525. * retry attempt).
  526. */
  527. void
  528. connection_ap_expire_beginning(void)
  529. {
  530. edge_connection_t *conn;
  531. entry_connection_t *entry_conn;
  532. circuit_t *circ;
  533. time_t now = time(NULL);
  534. const or_options_t *options = get_options();
  535. int severity;
  536. int cutoff;
  537. int seconds_idle, seconds_since_born;
  538. smartlist_t *conns = get_connection_array();
  539. SMARTLIST_FOREACH_BEGIN(conns, connection_t *, base_conn) {
  540. if (base_conn->type != CONN_TYPE_AP || base_conn->marked_for_close)
  541. continue;
  542. entry_conn = TO_ENTRY_CONN(base_conn);
  543. conn = ENTRY_TO_EDGE_CONN(entry_conn);
  544. /* if it's an internal linked connection, don't yell its status. */
  545. severity = (tor_addr_is_null(&base_conn->addr) && !base_conn->port)
  546. ? LOG_INFO : LOG_NOTICE;
  547. seconds_idle = (int)( now - base_conn->timestamp_lastread );
  548. seconds_since_born = (int)( now - base_conn->timestamp_created );
  549. if (base_conn->state == AP_CONN_STATE_OPEN)
  550. continue;
  551. /* We already consider SocksTimeout in
  552. * connection_ap_handshake_attach_circuit(), but we need to consider
  553. * it here too because controllers that put streams in controller_wait
  554. * state never ask Tor to attach the circuit. */
  555. if (AP_CONN_STATE_IS_UNATTACHED(base_conn->state)) {
  556. if (seconds_since_born >= options->SocksTimeout) {
  557. log_fn(severity, LD_APP,
  558. "Tried for %d seconds to get a connection to %s:%d. "
  559. "Giving up. (%s)",
  560. seconds_since_born,
  561. safe_str_client(entry_conn->socks_request->address),
  562. entry_conn->socks_request->port,
  563. conn_state_to_string(CONN_TYPE_AP, base_conn->state));
  564. connection_mark_unattached_ap(entry_conn, END_STREAM_REASON_TIMEOUT);
  565. }
  566. continue;
  567. }
  568. /* We're in state connect_wait or resolve_wait now -- waiting for a
  569. * reply to our relay cell. See if we want to retry/give up. */
  570. cutoff = compute_retry_timeout(entry_conn);
  571. if (seconds_idle < cutoff)
  572. continue;
  573. circ = circuit_get_by_edge_conn(conn);
  574. if (!circ) { /* it's vanished? */
  575. log_info(LD_APP,"Conn is waiting (address %s), but lost its circ.",
  576. safe_str_client(entry_conn->socks_request->address));
  577. connection_mark_unattached_ap(entry_conn, END_STREAM_REASON_TIMEOUT);
  578. continue;
  579. }
  580. if (circ->purpose == CIRCUIT_PURPOSE_C_REND_JOINED) {
  581. if (seconds_idle >= options->SocksTimeout) {
  582. log_fn(severity, LD_REND,
  583. "Rend stream is %d seconds late. Giving up on address"
  584. " '%s.onion'.",
  585. seconds_idle,
  586. safe_str_client(entry_conn->socks_request->address));
  587. /* Roll back path bias use state so that we probe the circuit
  588. * if nothing else succeeds on it */
  589. pathbias_mark_use_rollback(TO_ORIGIN_CIRCUIT(circ));
  590. connection_edge_end(conn, END_STREAM_REASON_TIMEOUT);
  591. connection_mark_unattached_ap(entry_conn, END_STREAM_REASON_TIMEOUT);
  592. }
  593. continue;
  594. }
  595. if (circ->purpose != CIRCUIT_PURPOSE_C_GENERAL &&
  596. circ->purpose != CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT &&
  597. circ->purpose != CIRCUIT_PURPOSE_PATH_BIAS_TESTING) {
  598. log_warn(LD_BUG, "circuit->purpose == CIRCUIT_PURPOSE_C_GENERAL failed. "
  599. "The purpose on the circuit was %s; it was in state %s, "
  600. "path_state %s.",
  601. circuit_purpose_to_string(circ->purpose),
  602. circuit_state_to_string(circ->state),
  603. CIRCUIT_IS_ORIGIN(circ) ?
  604. pathbias_state_to_string(TO_ORIGIN_CIRCUIT(circ)->path_state) :
  605. "none");
  606. }
  607. log_fn(cutoff < 15 ? LOG_INFO : severity, LD_APP,
  608. "We tried for %d seconds to connect to '%s' using exit %s."
  609. " Retrying on a new circuit.",
  610. seconds_idle,
  611. safe_str_client(entry_conn->socks_request->address),
  612. conn->cpath_layer ?
  613. extend_info_describe(conn->cpath_layer->extend_info):
  614. "*unnamed*");
  615. /* send an end down the circuit */
  616. connection_edge_end(conn, END_STREAM_REASON_TIMEOUT);
  617. /* un-mark it as ending, since we're going to reuse it */
  618. conn->edge_has_sent_end = 0;
  619. conn->end_reason = 0;
  620. /* make us not try this circuit again, but allow
  621. * current streams on it to survive if they can */
  622. mark_circuit_unusable_for_new_conns(TO_ORIGIN_CIRCUIT(circ));
  623. /* give our stream another 'cutoff' seconds to try */
  624. conn->base_.timestamp_lastread += cutoff;
  625. if (entry_conn->num_socks_retries < 250) /* avoid overflow */
  626. entry_conn->num_socks_retries++;
  627. /* move it back into 'pending' state, and try to attach. */
  628. if (connection_ap_detach_retriable(entry_conn, TO_ORIGIN_CIRCUIT(circ),
  629. END_STREAM_REASON_TIMEOUT)<0) {
  630. if (!base_conn->marked_for_close)
  631. connection_mark_unattached_ap(entry_conn,
  632. END_STREAM_REASON_CANT_ATTACH);
  633. }
  634. } SMARTLIST_FOREACH_END(base_conn);
  635. }
  636. /** Tell any AP streams that are waiting for a new circuit to try again,
  637. * either attaching to an available circ or launching a new one.
  638. */
  639. void
  640. connection_ap_attach_pending(void)
  641. {
  642. entry_connection_t *entry_conn;
  643. smartlist_t *conns = get_connection_array();
  644. SMARTLIST_FOREACH_BEGIN(conns, connection_t *, conn) {
  645. if (conn->marked_for_close ||
  646. conn->type != CONN_TYPE_AP ||
  647. conn->state != AP_CONN_STATE_CIRCUIT_WAIT)
  648. continue;
  649. entry_conn = TO_ENTRY_CONN(conn);
  650. if (connection_ap_handshake_attach_circuit(entry_conn) < 0) {
  651. if (!conn->marked_for_close)
  652. connection_mark_unattached_ap(entry_conn,
  653. END_STREAM_REASON_CANT_ATTACH);
  654. }
  655. } SMARTLIST_FOREACH_END(conn);
  656. }
  657. /** Tell any AP streams that are waiting for a one-hop tunnel to
  658. * <b>failed_digest</b> that they are going to fail. */
  659. /* XXX024 We should get rid of this function, and instead attach
  660. * one-hop streams to circ->p_streams so they get marked in
  661. * circuit_mark_for_close like normal p_streams. */
  662. void
  663. connection_ap_fail_onehop(const char *failed_digest,
  664. cpath_build_state_t *build_state)
  665. {
  666. entry_connection_t *entry_conn;
  667. char digest[DIGEST_LEN];
  668. smartlist_t *conns = get_connection_array();
  669. SMARTLIST_FOREACH_BEGIN(conns, connection_t *, conn) {
  670. if (conn->marked_for_close ||
  671. conn->type != CONN_TYPE_AP ||
  672. conn->state != AP_CONN_STATE_CIRCUIT_WAIT)
  673. continue;
  674. entry_conn = TO_ENTRY_CONN(conn);
  675. if (!entry_conn->want_onehop)
  676. continue;
  677. if (hexdigest_to_digest(entry_conn->chosen_exit_name, digest) < 0 ||
  678. tor_memneq(digest, failed_digest, DIGEST_LEN))
  679. continue;
  680. if (tor_digest_is_zero(digest)) {
  681. /* we don't know the digest; have to compare addr:port */
  682. tor_addr_t addr;
  683. if (!build_state || !build_state->chosen_exit ||
  684. !entry_conn->socks_request || !entry_conn->socks_request->address)
  685. continue;
  686. if (tor_addr_parse(&addr, entry_conn->socks_request->address)<0 ||
  687. !tor_addr_eq(&build_state->chosen_exit->addr, &addr) ||
  688. build_state->chosen_exit->port != entry_conn->socks_request->port)
  689. continue;
  690. }
  691. log_info(LD_APP, "Closing one-hop stream to '%s/%s' because the OR conn "
  692. "just failed.", entry_conn->chosen_exit_name,
  693. entry_conn->socks_request->address);
  694. connection_mark_unattached_ap(entry_conn, END_STREAM_REASON_TIMEOUT);
  695. } SMARTLIST_FOREACH_END(conn);
  696. }
  697. /** A circuit failed to finish on its last hop <b>info</b>. If there
  698. * are any streams waiting with this exit node in mind, but they
  699. * don't absolutely require it, make them give up on it.
  700. */
  701. void
  702. circuit_discard_optional_exit_enclaves(extend_info_t *info)
  703. {
  704. entry_connection_t *entry_conn;
  705. const node_t *r1, *r2;
  706. smartlist_t *conns = get_connection_array();
  707. SMARTLIST_FOREACH_BEGIN(conns, connection_t *, conn) {
  708. if (conn->marked_for_close ||
  709. conn->type != CONN_TYPE_AP ||
  710. conn->state != AP_CONN_STATE_CIRCUIT_WAIT)
  711. continue;
  712. entry_conn = TO_ENTRY_CONN(conn);
  713. if (!entry_conn->chosen_exit_optional &&
  714. !entry_conn->chosen_exit_retries)
  715. continue;
  716. r1 = node_get_by_nickname(entry_conn->chosen_exit_name, 0);
  717. r2 = node_get_by_id(info->identity_digest);
  718. if (!r1 || !r2 || r1 != r2)
  719. continue;
  720. tor_assert(entry_conn->socks_request);
  721. if (entry_conn->chosen_exit_optional) {
  722. log_info(LD_APP, "Giving up on enclave exit '%s' for destination %s.",
  723. safe_str_client(entry_conn->chosen_exit_name),
  724. escaped_safe_str_client(entry_conn->socks_request->address));
  725. entry_conn->chosen_exit_optional = 0;
  726. tor_free(entry_conn->chosen_exit_name); /* clears it */
  727. /* if this port is dangerous, warn or reject it now that we don't
  728. * think it'll be using an enclave. */
  729. consider_plaintext_ports(entry_conn, entry_conn->socks_request->port);
  730. }
  731. if (entry_conn->chosen_exit_retries) {
  732. if (--entry_conn->chosen_exit_retries == 0) { /* give up! */
  733. clear_trackexithost_mappings(entry_conn->chosen_exit_name);
  734. tor_free(entry_conn->chosen_exit_name); /* clears it */
  735. /* if this port is dangerous, warn or reject it now that we don't
  736. * think it'll be using an enclave. */
  737. consider_plaintext_ports(entry_conn, entry_conn->socks_request->port);
  738. }
  739. }
  740. } SMARTLIST_FOREACH_END(conn);
  741. }
  742. /** The AP connection <b>conn</b> has just failed while attaching or
  743. * sending a BEGIN or resolving on <b>circ</b>, but another circuit
  744. * might work. Detach the circuit, and either reattach it, launch a
  745. * new circuit, tell the controller, or give up as appropriate.
  746. *
  747. * Returns -1 on err, 1 on success, 0 on not-yet-sure.
  748. */
  749. int
  750. connection_ap_detach_retriable(entry_connection_t *conn,
  751. origin_circuit_t *circ,
  752. int reason)
  753. {
  754. control_event_stream_status(conn, STREAM_EVENT_FAILED_RETRIABLE, reason);
  755. ENTRY_TO_CONN(conn)->timestamp_lastread = time(NULL);
  756. /* Roll back path bias use state so that we probe the circuit
  757. * if nothing else succeeds on it */
  758. pathbias_mark_use_rollback(circ);
  759. if (conn->pending_optimistic_data) {
  760. generic_buffer_set_to_copy(&conn->sending_optimistic_data,
  761. conn->pending_optimistic_data);
  762. }
  763. if (!get_options()->LeaveStreamsUnattached || conn->use_begindir) {
  764. /* If we're attaching streams ourself, or if this connection is
  765. * a tunneled directory connection, then just attach it. */
  766. ENTRY_TO_CONN(conn)->state = AP_CONN_STATE_CIRCUIT_WAIT;
  767. circuit_detach_stream(TO_CIRCUIT(circ),ENTRY_TO_EDGE_CONN(conn));
  768. return connection_ap_handshake_attach_circuit(conn);
  769. } else {
  770. ENTRY_TO_CONN(conn)->state = AP_CONN_STATE_CONTROLLER_WAIT;
  771. circuit_detach_stream(TO_CIRCUIT(circ),ENTRY_TO_EDGE_CONN(conn));
  772. return 0;
  773. }
  774. }
  775. /** Check if <b>conn</b> is using a dangerous port. Then warn and/or
  776. * reject depending on our config options. */
  777. static int
  778. consider_plaintext_ports(entry_connection_t *conn, uint16_t port)
  779. {
  780. const or_options_t *options = get_options();
  781. int reject = smartlist_contains_int_as_string(
  782. options->RejectPlaintextPorts, port);
  783. if (smartlist_contains_int_as_string(options->WarnPlaintextPorts, port)) {
  784. log_warn(LD_APP, "Application request to port %d: this port is "
  785. "commonly used for unencrypted protocols. Please make sure "
  786. "you don't send anything you would mind the rest of the "
  787. "Internet reading!%s", port, reject ? " Closing." : "");
  788. control_event_client_status(LOG_WARN, "DANGEROUS_PORT PORT=%d RESULT=%s",
  789. port, reject ? "REJECT" : "WARN");
  790. }
  791. if (reject) {
  792. log_info(LD_APP, "Port %d listed in RejectPlaintextPorts. Closing.", port);
  793. connection_mark_unattached_ap(conn, END_STREAM_REASON_ENTRYPOLICY);
  794. return -1;
  795. }
  796. return 0;
  797. }
  798. /** How many times do we try connecting with an exit configured via
  799. * TrackHostExits before concluding that it won't work any more and trying a
  800. * different one? */
  801. #define TRACKHOSTEXITS_RETRIES 5
  802. /** Call connection_ap_handshake_rewrite_and_attach() unless a controller
  803. * asked us to leave streams unattached. Return 0 in that case.
  804. *
  805. * See connection_ap_handshake_rewrite_and_attach()'s
  806. * documentation for arguments and return value.
  807. */
  808. int
  809. connection_ap_rewrite_and_attach_if_allowed(entry_connection_t *conn,
  810. origin_circuit_t *circ,
  811. crypt_path_t *cpath)
  812. {
  813. const or_options_t *options = get_options();
  814. if (options->LeaveStreamsUnattached) {
  815. ENTRY_TO_CONN(conn)->state = AP_CONN_STATE_CONTROLLER_WAIT;
  816. return 0;
  817. }
  818. return connection_ap_handshake_rewrite_and_attach(conn, circ, cpath);
  819. }
  820. /** Connection <b>conn</b> just finished its socks handshake, or the
  821. * controller asked us to take care of it. If <b>circ</b> is defined,
  822. * then that's where we'll want to attach it. Otherwise we have to
  823. * figure it out ourselves.
  824. *
  825. * First, parse whether it's a .exit address, remap it, and so on. Then
  826. * if it's for a general circuit, try to attach it to a circuit (or launch
  827. * one as needed), else if it's for a rendezvous circuit, fetch a
  828. * rendezvous descriptor first (or attach/launch a circuit if the
  829. * rendezvous descriptor is already here and fresh enough).
  830. *
  831. * The stream will exit from the hop
  832. * indicated by <b>cpath</b>, or from the last hop in circ's cpath if
  833. * <b>cpath</b> is NULL.
  834. */
  835. int
  836. connection_ap_handshake_rewrite_and_attach(entry_connection_t *conn,
  837. origin_circuit_t *circ,
  838. crypt_path_t *cpath)
  839. {
  840. socks_request_t *socks = conn->socks_request;
  841. hostname_type_t addresstype;
  842. const or_options_t *options = get_options();
  843. tor_addr_t addr_tmp;
  844. /* We set this to true if this is an address we should automatically
  845. * remap to a local address in VirtualAddrNetwork */
  846. int automap = 0;
  847. char orig_address[MAX_SOCKS_ADDR_LEN];
  848. time_t map_expires = TIME_MAX;
  849. time_t now = time(NULL);
  850. connection_t *base_conn = ENTRY_TO_CONN(conn);
  851. addressmap_entry_source_t exit_source = ADDRMAPSRC_NONE;
  852. tor_strlower(socks->address); /* normalize it */
  853. strlcpy(orig_address, socks->address, sizeof(orig_address));
  854. log_debug(LD_APP,"Client asked for %s:%d",
  855. safe_str_client(socks->address),
  856. socks->port);
  857. if (!strcmpend(socks->address, ".exit") && !options->AllowDotExit) {
  858. log_warn(LD_APP, "The \".exit\" notation is disabled in Tor due to "
  859. "security risks. Set AllowDotExit in your torrc to enable "
  860. "it (at your own risk).");
  861. control_event_client_status(LOG_WARN, "SOCKS_BAD_HOSTNAME HOSTNAME=%s",
  862. escaped(socks->address));
  863. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  864. return -1;
  865. }
  866. if (! conn->original_dest_address)
  867. conn->original_dest_address = tor_strdup(conn->socks_request->address);
  868. if (socks->command == SOCKS_COMMAND_RESOLVE &&
  869. tor_addr_parse(&addr_tmp, socks->address)<0 &&
  870. options->AutomapHostsOnResolve) {
  871. automap = addressmap_address_should_automap(socks->address, options);
  872. if (automap) {
  873. const char *new_addr;
  874. int addr_type = RESOLVED_TYPE_IPV4;
  875. if (conn->socks_request->socks_version != 4) {
  876. if (!conn->ipv4_traffic_ok ||
  877. (conn->ipv6_traffic_ok && conn->prefer_ipv6_traffic) ||
  878. conn->prefer_ipv6_virtaddr)
  879. addr_type = RESOLVED_TYPE_IPV6;
  880. }
  881. new_addr = addressmap_register_virtual_address(
  882. addr_type, tor_strdup(socks->address));
  883. if (! new_addr) {
  884. log_warn(LD_APP, "Unable to automap address %s",
  885. escaped_safe_str(socks->address));
  886. connection_mark_unattached_ap(conn, END_STREAM_REASON_INTERNAL);
  887. return -1;
  888. }
  889. log_info(LD_APP, "Automapping %s to %s",
  890. escaped_safe_str_client(socks->address),
  891. safe_str_client(new_addr));
  892. strlcpy(socks->address, new_addr, sizeof(socks->address));
  893. }
  894. }
  895. if (socks->command == SOCKS_COMMAND_RESOLVE_PTR) {
  896. unsigned rewrite_flags = 0;
  897. if (conn->use_cached_ipv4_answers)
  898. rewrite_flags |= AMR_FLAG_USE_IPV4_DNS;
  899. if (conn->use_cached_ipv6_answers)
  900. rewrite_flags |= AMR_FLAG_USE_IPV6_DNS;
  901. if (addressmap_rewrite_reverse(socks->address, sizeof(socks->address),
  902. rewrite_flags, &map_expires)) {
  903. char *result = tor_strdup(socks->address);
  904. /* remember _what_ is supposed to have been resolved. */
  905. tor_snprintf(socks->address, sizeof(socks->address), "REVERSE[%s]",
  906. orig_address);
  907. connection_ap_handshake_socks_resolved(conn, RESOLVED_TYPE_HOSTNAME,
  908. strlen(result), (uint8_t*)result,
  909. -1,
  910. map_expires);
  911. connection_mark_unattached_ap(conn,
  912. END_STREAM_REASON_DONE |
  913. END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED);
  914. return 0;
  915. }
  916. if (options->ClientDNSRejectInternalAddresses) {
  917. /* Don't let people try to do a reverse lookup on 10.0.0.1. */
  918. tor_addr_t addr;
  919. int ok;
  920. ok = tor_addr_parse_PTR_name(
  921. &addr, socks->address, AF_UNSPEC, 1);
  922. if (ok == 1 && tor_addr_is_internal(&addr, 0)) {
  923. connection_ap_handshake_socks_resolved(conn, RESOLVED_TYPE_ERROR,
  924. 0, NULL, -1, TIME_MAX);
  925. connection_mark_unattached_ap(conn,
  926. END_STREAM_REASON_SOCKSPROTOCOL |
  927. END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED);
  928. return -1;
  929. }
  930. }
  931. } else if (!automap) {
  932. /* For address map controls, remap the address. */
  933. unsigned rewrite_flags = 0;
  934. if (conn->use_cached_ipv4_answers)
  935. rewrite_flags |= AMR_FLAG_USE_IPV4_DNS;
  936. if (conn->use_cached_ipv6_answers)
  937. rewrite_flags |= AMR_FLAG_USE_IPV6_DNS;
  938. if (addressmap_rewrite(socks->address, sizeof(socks->address),
  939. rewrite_flags, &map_expires, &exit_source)) {
  940. control_event_stream_status(conn, STREAM_EVENT_REMAP,
  941. REMAP_STREAM_SOURCE_CACHE);
  942. }
  943. }
  944. if (!automap && address_is_in_virtual_range(socks->address)) {
  945. /* This address was probably handed out by client_dns_get_unmapped_address,
  946. * but the mapping was discarded for some reason. We *don't* want to send
  947. * the address through Tor; that's likely to fail, and may leak
  948. * information.
  949. */
  950. log_warn(LD_APP,"Missing mapping for virtual address '%s'. Refusing.",
  951. safe_str_client(socks->address));
  952. connection_mark_unattached_ap(conn, END_STREAM_REASON_INTERNAL);
  953. return -1;
  954. }
  955. /* Parse the address provided by SOCKS. Modify it in-place if it
  956. * specifies a hidden-service (.onion) or particular exit node (.exit).
  957. */
  958. addresstype = parse_extended_hostname(socks->address);
  959. if (addresstype == BAD_HOSTNAME) {
  960. control_event_client_status(LOG_WARN, "SOCKS_BAD_HOSTNAME HOSTNAME=%s",
  961. escaped(socks->address));
  962. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  963. return -1;
  964. }
  965. if (addresstype == EXIT_HOSTNAME) {
  966. /* foo.exit -- modify conn->chosen_exit_node to specify the exit
  967. * node, and conn->address to hold only the address portion. */
  968. char *s = strrchr(socks->address,'.');
  969. /* If StrictNodes is not set, then .exit overrides ExcludeNodes. */
  970. routerset_t *excludeset = options->StrictNodes ?
  971. options->ExcludeExitNodesUnion_ : options->ExcludeExitNodes;
  972. const node_t *node;
  973. if (exit_source == ADDRMAPSRC_AUTOMAP && !options->AllowDotExit) {
  974. /* Whoops; this one is stale. It must have gotten added earlier,
  975. * when AllowDotExit was on. */
  976. log_warn(LD_APP,"Stale automapped address for '%s.exit', with "
  977. "AllowDotExit disabled. Refusing.",
  978. safe_str_client(socks->address));
  979. control_event_client_status(LOG_WARN, "SOCKS_BAD_HOSTNAME HOSTNAME=%s",
  980. escaped(socks->address));
  981. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  982. return -1;
  983. }
  984. if (exit_source == ADDRMAPSRC_DNS ||
  985. (exit_source == ADDRMAPSRC_NONE && !options->AllowDotExit)) {
  986. /* It shouldn't be possible to get a .exit address from any of these
  987. * sources. */
  988. log_warn(LD_BUG,"Address '%s.exit', with impossible source for the "
  989. ".exit part. Refusing.",
  990. safe_str_client(socks->address));
  991. control_event_client_status(LOG_WARN, "SOCKS_BAD_HOSTNAME HOSTNAME=%s",
  992. escaped(socks->address));
  993. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  994. return -1;
  995. }
  996. tor_assert(!automap);
  997. if (s) {
  998. /* The address was of the form "(stuff).(name).exit */
  999. if (s[1] != '\0') {
  1000. conn->chosen_exit_name = tor_strdup(s+1);
  1001. node = node_get_by_nickname(conn->chosen_exit_name, 1);
  1002. if (exit_source == ADDRMAPSRC_TRACKEXIT) {
  1003. /* We 5 tries before it expires the addressmap */
  1004. conn->chosen_exit_retries = TRACKHOSTEXITS_RETRIES;
  1005. }
  1006. *s = 0;
  1007. } else {
  1008. /* Oops, the address was (stuff)..exit. That's not okay. */
  1009. log_warn(LD_APP,"Malformed exit address '%s.exit'. Refusing.",
  1010. safe_str_client(socks->address));
  1011. control_event_client_status(LOG_WARN, "SOCKS_BAD_HOSTNAME HOSTNAME=%s",
  1012. escaped(socks->address));
  1013. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  1014. return -1;
  1015. }
  1016. } else {
  1017. /* It looks like they just asked for "foo.exit". */
  1018. conn->chosen_exit_name = tor_strdup(socks->address);
  1019. node = node_get_by_nickname(conn->chosen_exit_name, 1);
  1020. if (node) {
  1021. *socks->address = 0;
  1022. node_get_address_string(node, socks->address, sizeof(socks->address));
  1023. }
  1024. }
  1025. /* Now make sure that the chosen exit exists... */
  1026. if (!node) {
  1027. log_warn(LD_APP,
  1028. "Unrecognized relay in exit address '%s.exit'. Refusing.",
  1029. safe_str_client(socks->address));
  1030. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  1031. return -1;
  1032. }
  1033. /* ...and make sure that it isn't excluded. */
  1034. if (routerset_contains_node(excludeset, node)) {
  1035. log_warn(LD_APP,
  1036. "Excluded relay in exit address '%s.exit'. Refusing.",
  1037. safe_str_client(socks->address));
  1038. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  1039. return -1;
  1040. }
  1041. /* XXXX024-1090 Should we also allow foo.bar.exit if ExitNodes is set and
  1042. Bar is not listed in it? I say yes, but our revised manpage branch
  1043. implies no. */
  1044. }
  1045. if (addresstype != ONION_HOSTNAME) {
  1046. /* not a hidden-service request (i.e. normal or .exit) */
  1047. if (address_is_invalid_destination(socks->address, 1)) {
  1048. control_event_client_status(LOG_WARN, "SOCKS_BAD_HOSTNAME HOSTNAME=%s",
  1049. escaped(socks->address));
  1050. log_warn(LD_APP,
  1051. "Destination '%s' seems to be an invalid hostname. Failing.",
  1052. safe_str_client(socks->address));
  1053. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  1054. return -1;
  1055. }
  1056. if (options->Tor2webMode) {
  1057. log_warn(LD_APP, "Refusing to connect to non-hidden-service hostname %s "
  1058. "because tor2web mode is enabled.",
  1059. safe_str_client(socks->address));
  1060. connection_mark_unattached_ap(conn, END_STREAM_REASON_ENTRYPOLICY);
  1061. return -1;
  1062. }
  1063. if (socks->command == SOCKS_COMMAND_RESOLVE) {
  1064. uint32_t answer;
  1065. struct in_addr in;
  1066. /* Reply to resolves immediately if we can. */
  1067. if (tor_inet_aton(socks->address, &in)) { /* see if it's an IP already */
  1068. /* leave it in network order */
  1069. answer = in.s_addr;
  1070. /* remember _what_ is supposed to have been resolved. */
  1071. strlcpy(socks->address, orig_address, sizeof(socks->address));
  1072. connection_ap_handshake_socks_resolved(conn,RESOLVED_TYPE_IPV4,4,
  1073. (uint8_t*)&answer,
  1074. -1,map_expires);
  1075. connection_mark_unattached_ap(conn,
  1076. END_STREAM_REASON_DONE |
  1077. END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED);
  1078. return 0;
  1079. }
  1080. tor_assert(!automap);
  1081. rep_hist_note_used_resolve(now); /* help predict this next time */
  1082. } else if (socks->command == SOCKS_COMMAND_CONNECT) {
  1083. tor_assert(!automap);
  1084. if (socks->port == 0) {
  1085. log_notice(LD_APP,"Application asked to connect to port 0. Refusing.");
  1086. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  1087. return -1;
  1088. }
  1089. if (options->ClientRejectInternalAddresses &&
  1090. !conn->use_begindir && !conn->chosen_exit_name && !circ) {
  1091. tor_addr_t addr;
  1092. if (tor_addr_hostname_is_local(socks->address) ||
  1093. (tor_addr_parse(&addr, socks->address) >= 0 &&
  1094. tor_addr_is_internal(&addr, 0))) {
  1095. /* If this is an explicit private address with no chosen exit node,
  1096. * then we really don't want to try to connect to it. That's
  1097. * probably an error. */
  1098. if (conn->is_transparent_ap) {
  1099. #define WARN_INTRVL_LOOP 300
  1100. static ratelim_t loop_warn_limit = RATELIM_INIT(WARN_INTRVL_LOOP);
  1101. char *m;
  1102. if ((m = rate_limit_log(&loop_warn_limit, approx_time()))) {
  1103. log_warn(LD_NET,
  1104. "Rejecting request for anonymous connection to private "
  1105. "address %s on a TransPort or NATDPort. Possible loop "
  1106. "in your NAT rules?%s", safe_str_client(socks->address),
  1107. m);
  1108. tor_free(m);
  1109. }
  1110. } else {
  1111. #define WARN_INTRVL_PRIV 300
  1112. static ratelim_t priv_warn_limit = RATELIM_INIT(WARN_INTRVL_PRIV);
  1113. char *m;
  1114. if ((m = rate_limit_log(&priv_warn_limit, approx_time()))) {
  1115. log_warn(LD_NET,
  1116. "Rejecting SOCKS request for anonymous connection to "
  1117. "private address %s.%s",
  1118. safe_str_client(socks->address),m);
  1119. tor_free(m);
  1120. }
  1121. }
  1122. connection_mark_unattached_ap(conn, END_STREAM_REASON_PRIVATE_ADDR);
  1123. return -1;
  1124. }
  1125. }
  1126. {
  1127. tor_addr_t addr;
  1128. /* XXX Duplicate call to tor_addr_parse. */
  1129. if (tor_addr_parse(&addr, socks->address) >= 0) {
  1130. sa_family_t family = tor_addr_family(&addr);
  1131. if ((family == AF_INET && ! conn->ipv4_traffic_ok) ||
  1132. (family == AF_INET6 && ! conn->ipv4_traffic_ok)) {
  1133. log_warn(LD_NET, "Rejecting SOCKS request for an IP address "
  1134. "family that this listener does not support.");
  1135. connection_mark_unattached_ap(conn, END_STREAM_REASON_ENTRYPOLICY);
  1136. return -1;
  1137. } else if (family == AF_INET6 && socks->socks_version == 4) {
  1138. log_warn(LD_NET, "Rejecting SOCKS4 request for an IPv6 address.");
  1139. connection_mark_unattached_ap(conn, END_STREAM_REASON_ENTRYPOLICY);
  1140. return -1;
  1141. } else if (socks->socks_version == 4 && !conn->ipv4_traffic_ok) {
  1142. log_warn(LD_NET, "Rejecting SOCKS4 request on a listener with "
  1143. "no IPv4 traffic supported.");
  1144. connection_mark_unattached_ap(conn, END_STREAM_REASON_ENTRYPOLICY);
  1145. return -1;
  1146. } else if (family == AF_INET6) {
  1147. conn->ipv4_traffic_ok = 0;
  1148. } else if (family == AF_INET) {
  1149. conn->ipv6_traffic_ok = 0;
  1150. }
  1151. }
  1152. }
  1153. if (socks->socks_version == 4)
  1154. conn->ipv6_traffic_ok = 0;
  1155. if (!conn->use_begindir && !conn->chosen_exit_name && !circ) {
  1156. /* see if we can find a suitable enclave exit */
  1157. const node_t *r =
  1158. router_find_exact_exit_enclave(socks->address, socks->port);
  1159. if (r) {
  1160. log_info(LD_APP,
  1161. "Redirecting address %s to exit at enclave router %s",
  1162. safe_str_client(socks->address), node_describe(r));
  1163. /* use the hex digest, not nickname, in case there are two
  1164. routers with this nickname */
  1165. conn->chosen_exit_name =
  1166. tor_strdup(hex_str(r->identity, DIGEST_LEN));
  1167. conn->chosen_exit_optional = 1;
  1168. }
  1169. }
  1170. /* warn or reject if it's using a dangerous port */
  1171. if (!conn->use_begindir && !conn->chosen_exit_name && !circ)
  1172. if (consider_plaintext_ports(conn, socks->port) < 0)
  1173. return -1;
  1174. if (!conn->use_begindir) {
  1175. /* help predict this next time */
  1176. rep_hist_note_used_port(now, socks->port);
  1177. }
  1178. } else if (socks->command == SOCKS_COMMAND_RESOLVE_PTR) {
  1179. rep_hist_note_used_resolve(now); /* help predict this next time */
  1180. /* no extra processing needed */
  1181. } else {
  1182. tor_fragile_assert();
  1183. }
  1184. base_conn->state = AP_CONN_STATE_CIRCUIT_WAIT;
  1185. if ((circ && connection_ap_handshake_attach_chosen_circuit(
  1186. conn, circ, cpath) < 0) ||
  1187. (!circ &&
  1188. connection_ap_handshake_attach_circuit(conn) < 0)) {
  1189. if (!base_conn->marked_for_close)
  1190. connection_mark_unattached_ap(conn, END_STREAM_REASON_CANT_ATTACH);
  1191. return -1;
  1192. }
  1193. return 0;
  1194. } else {
  1195. /* it's a hidden-service request */
  1196. rend_cache_entry_t *entry;
  1197. int r;
  1198. rend_service_authorization_t *client_auth;
  1199. rend_data_t *rend_data;
  1200. tor_assert(!automap);
  1201. if (SOCKS_COMMAND_IS_RESOLVE(socks->command)) {
  1202. /* if it's a resolve request, fail it right now, rather than
  1203. * building all the circuits and then realizing it won't work. */
  1204. log_warn(LD_APP,
  1205. "Resolve requests to hidden services not allowed. Failing.");
  1206. connection_ap_handshake_socks_resolved(conn,RESOLVED_TYPE_ERROR,
  1207. 0,NULL,-1,TIME_MAX);
  1208. connection_mark_unattached_ap(conn,
  1209. END_STREAM_REASON_SOCKSPROTOCOL |
  1210. END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED);
  1211. return -1;
  1212. }
  1213. if (circ) {
  1214. log_warn(LD_CONTROL, "Attachstream to a circuit is not "
  1215. "supported for .onion addresses currently. Failing.");
  1216. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  1217. return -1;
  1218. }
  1219. ENTRY_TO_EDGE_CONN(conn)->rend_data = rend_data =
  1220. tor_malloc_zero(sizeof(rend_data_t));
  1221. strlcpy(rend_data->onion_address, socks->address,
  1222. sizeof(rend_data->onion_address));
  1223. log_info(LD_REND,"Got a hidden service request for ID '%s'",
  1224. safe_str_client(rend_data->onion_address));
  1225. /* see if we already have it cached */
  1226. r = rend_cache_lookup_entry(rend_data->onion_address, -1, &entry);
  1227. if (r<0) {
  1228. log_warn(LD_BUG,"Invalid service name '%s'",
  1229. safe_str_client(rend_data->onion_address));
  1230. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  1231. return -1;
  1232. }
  1233. /* Help predict this next time. We're not sure if it will need
  1234. * a stable circuit yet, but we know we'll need *something*. */
  1235. rep_hist_note_used_internal(now, 0, 1);
  1236. /* Look up if we have client authorization for it. */
  1237. client_auth = rend_client_lookup_service_authorization(
  1238. rend_data->onion_address);
  1239. if (client_auth) {
  1240. log_info(LD_REND, "Using previously configured client authorization "
  1241. "for hidden service request.");
  1242. memcpy(rend_data->descriptor_cookie,
  1243. client_auth->descriptor_cookie, REND_DESC_COOKIE_LEN);
  1244. rend_data->auth_type = client_auth->auth_type;
  1245. }
  1246. if (r==0) {
  1247. base_conn->state = AP_CONN_STATE_RENDDESC_WAIT;
  1248. log_info(LD_REND, "Unknown descriptor %s. Fetching.",
  1249. safe_str_client(rend_data->onion_address));
  1250. rend_client_refetch_v2_renddesc(rend_data);
  1251. } else { /* r > 0 */
  1252. base_conn->state = AP_CONN_STATE_CIRCUIT_WAIT;
  1253. log_info(LD_REND, "Descriptor is here. Great.");
  1254. if (connection_ap_handshake_attach_circuit(conn) < 0) {
  1255. if (!base_conn->marked_for_close)
  1256. connection_mark_unattached_ap(conn, END_STREAM_REASON_CANT_ATTACH);
  1257. return -1;
  1258. }
  1259. }
  1260. return 0;
  1261. }
  1262. return 0; /* unreached but keeps the compiler happy */
  1263. }
  1264. #ifdef TRANS_PF
  1265. static int pf_socket = -1;
  1266. int
  1267. get_pf_socket(void)
  1268. {
  1269. int pf;
  1270. /* This should be opened before dropping privileges. */
  1271. if (pf_socket >= 0)
  1272. return pf_socket;
  1273. #ifdef OPENBSD
  1274. /* only works on OpenBSD */
  1275. pf = tor_open_cloexec("/dev/pf", O_RDONLY, 0);
  1276. #else
  1277. /* works on NetBSD and FreeBSD */
  1278. pf = tor_open_cloexec("/dev/pf", O_RDWR, 0);
  1279. #endif
  1280. if (pf < 0) {
  1281. log_warn(LD_NET, "open(\"/dev/pf\") failed: %s", strerror(errno));
  1282. return -1;
  1283. }
  1284. pf_socket = pf;
  1285. return pf_socket;
  1286. }
  1287. #endif
  1288. /** Fetch the original destination address and port from a
  1289. * system-specific interface and put them into a
  1290. * socks_request_t as if they came from a socks request.
  1291. *
  1292. * Return -1 if an error prevents fetching the destination,
  1293. * else return 0.
  1294. */
  1295. static int
  1296. connection_ap_get_original_destination(entry_connection_t *conn,
  1297. socks_request_t *req)
  1298. {
  1299. #ifdef TRANS_NETFILTER
  1300. /* Linux 2.4+ */
  1301. struct sockaddr_storage orig_dst;
  1302. socklen_t orig_dst_len = sizeof(orig_dst);
  1303. tor_addr_t addr;
  1304. if (getsockopt(ENTRY_TO_CONN(conn)->s, SOL_IP, SO_ORIGINAL_DST,
  1305. (struct sockaddr*)&orig_dst, &orig_dst_len) < 0) {
  1306. int e = tor_socket_errno(ENTRY_TO_CONN(conn)->s);
  1307. log_warn(LD_NET, "getsockopt() failed: %s", tor_socket_strerror(e));
  1308. return -1;
  1309. }
  1310. tor_addr_from_sockaddr(&addr, (struct sockaddr*)&orig_dst, &req->port);
  1311. tor_addr_to_str(req->address, &addr, sizeof(req->address), 1);
  1312. return 0;
  1313. #elif defined(TRANS_PF)
  1314. struct sockaddr_storage proxy_addr;
  1315. socklen_t proxy_addr_len = sizeof(proxy_addr);
  1316. struct sockaddr *proxy_sa = (struct sockaddr*) &proxy_addr;
  1317. struct pfioc_natlook pnl;
  1318. tor_addr_t addr;
  1319. int pf = -1;
  1320. if (getsockname(ENTRY_TO_CONN(conn)->s, (struct sockaddr*)&proxy_addr,
  1321. &proxy_addr_len) < 0) {
  1322. int e = tor_socket_errno(ENTRY_TO_CONN(conn)->s);
  1323. log_warn(LD_NET, "getsockname() to determine transocks destination "
  1324. "failed: %s", tor_socket_strerror(e));
  1325. return -1;
  1326. }
  1327. memset(&pnl, 0, sizeof(pnl));
  1328. pnl.proto = IPPROTO_TCP;
  1329. pnl.direction = PF_OUT;
  1330. if (proxy_sa->sa_family == AF_INET) {
  1331. struct sockaddr_in *sin = (struct sockaddr_in *)proxy_sa;
  1332. pnl.af = AF_INET;
  1333. pnl.saddr.v4.s_addr = tor_addr_to_ipv4n(&ENTRY_TO_CONN(conn)->addr);
  1334. pnl.sport = htons(ENTRY_TO_CONN(conn)->port);
  1335. pnl.daddr.v4.s_addr = sin->sin_addr.s_addr;
  1336. pnl.dport = sin->sin_port;
  1337. } else if (proxy_sa->sa_family == AF_INET6) {
  1338. struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)proxy_sa;
  1339. pnl.af = AF_INET6;
  1340. memcpy(&pnl.saddr.v6, tor_addr_to_in6(&ENTRY_TO_CONN(conn)->addr),
  1341. sizeof(struct in6_addr));
  1342. pnl.sport = htons(ENTRY_TO_CONN(conn)->port);
  1343. memcpy(&pnl.daddr.v6, &sin6->sin6_addr, sizeof(struct in6_addr));
  1344. pnl.dport = sin6->sin6_port;
  1345. } else {
  1346. log_warn(LD_NET, "getsockname() gave an unexpected address family (%d)",
  1347. (int)proxy_sa->sa_family);
  1348. return -1;
  1349. }
  1350. pf = get_pf_socket();
  1351. if (pf<0)
  1352. return -1;
  1353. if (ioctl(pf, DIOCNATLOOK, &pnl) < 0) {
  1354. log_warn(LD_NET, "ioctl(DIOCNATLOOK) failed: %s", strerror(errno));
  1355. return -1;
  1356. }
  1357. if (pnl.af == AF_INET) {
  1358. tor_addr_from_ipv4n(&addr, pnl.rdaddr.v4.s_addr);
  1359. } else if (pnl.af == AF_INET6) {
  1360. tor_addr_from_in6(&addr, &pnl.rdaddr.v6);
  1361. } else {
  1362. tor_fragile_assert();
  1363. return -1;
  1364. }
  1365. tor_addr_to_str(req->address, &addr, sizeof(req->address), 1);
  1366. req->port = ntohs(pnl.rdport);
  1367. return 0;
  1368. #else
  1369. (void)conn;
  1370. (void)req;
  1371. log_warn(LD_BUG, "Called connection_ap_get_original_destination, but no "
  1372. "transparent proxy method was configured.");
  1373. return -1;
  1374. #endif
  1375. }
  1376. /** connection_edge_process_inbuf() found a conn in state
  1377. * socks_wait. See if conn->inbuf has the right bytes to proceed with
  1378. * the socks handshake.
  1379. *
  1380. * If the handshake is complete, send it to
  1381. * connection_ap_handshake_rewrite_and_attach().
  1382. *
  1383. * Return -1 if an unexpected error with conn occurs (and mark it for close),
  1384. * else return 0.
  1385. */
  1386. static int
  1387. connection_ap_handshake_process_socks(entry_connection_t *conn)
  1388. {
  1389. socks_request_t *socks;
  1390. int sockshere;
  1391. const or_options_t *options = get_options();
  1392. int had_reply = 0;
  1393. connection_t *base_conn = ENTRY_TO_CONN(conn);
  1394. tor_assert(conn);
  1395. tor_assert(base_conn->type == CONN_TYPE_AP);
  1396. tor_assert(base_conn->state == AP_CONN_STATE_SOCKS_WAIT);
  1397. tor_assert(conn->socks_request);
  1398. socks = conn->socks_request;
  1399. log_debug(LD_APP,"entered.");
  1400. IF_HAS_BUFFEREVENT(base_conn, {
  1401. struct evbuffer *input = bufferevent_get_input(base_conn->bufev);
  1402. sockshere = fetch_from_evbuffer_socks(input, socks,
  1403. options->TestSocks, options->SafeSocks);
  1404. }) ELSE_IF_NO_BUFFEREVENT {
  1405. sockshere = fetch_from_buf_socks(base_conn->inbuf, socks,
  1406. options->TestSocks, options->SafeSocks);
  1407. };
  1408. if (socks->replylen) {
  1409. had_reply = 1;
  1410. connection_write_to_buf((const char*)socks->reply, socks->replylen,
  1411. base_conn);
  1412. socks->replylen = 0;
  1413. if (sockshere == -1) {
  1414. /* An invalid request just got a reply, no additional
  1415. * one is necessary. */
  1416. socks->has_finished = 1;
  1417. }
  1418. }
  1419. if (sockshere == 0) {
  1420. log_debug(LD_APP,"socks handshake not all here yet.");
  1421. return 0;
  1422. } else if (sockshere == -1) {
  1423. if (!had_reply) {
  1424. log_warn(LD_APP,"Fetching socks handshake failed. Closing.");
  1425. connection_ap_handshake_socks_reply(conn, NULL, 0,
  1426. END_STREAM_REASON_SOCKSPROTOCOL);
  1427. }
  1428. connection_mark_unattached_ap(conn,
  1429. END_STREAM_REASON_SOCKSPROTOCOL |
  1430. END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED);
  1431. return -1;
  1432. } /* else socks handshake is done, continue processing */
  1433. if (SOCKS_COMMAND_IS_CONNECT(socks->command))
  1434. control_event_stream_status(conn, STREAM_EVENT_NEW, 0);
  1435. else
  1436. control_event_stream_status(conn, STREAM_EVENT_NEW_RESOLVE, 0);
  1437. return connection_ap_rewrite_and_attach_if_allowed(conn, NULL, NULL);
  1438. }
  1439. /** connection_init_accepted_conn() found a new trans AP conn.
  1440. * Get the original destination and send it to
  1441. * connection_ap_handshake_rewrite_and_attach().
  1442. *
  1443. * Return -1 if an unexpected error with conn (and it should be marked
  1444. * for close), else return 0.
  1445. */
  1446. int
  1447. connection_ap_process_transparent(entry_connection_t *conn)
  1448. {
  1449. socks_request_t *socks;
  1450. tor_assert(conn);
  1451. tor_assert(conn->socks_request);
  1452. socks = conn->socks_request;
  1453. /* pretend that a socks handshake completed so we don't try to
  1454. * send a socks reply down a transparent conn */
  1455. socks->command = SOCKS_COMMAND_CONNECT;
  1456. socks->has_finished = 1;
  1457. log_debug(LD_APP,"entered.");
  1458. if (connection_ap_get_original_destination(conn, socks) < 0) {
  1459. log_warn(LD_APP,"Fetching original destination failed. Closing.");
  1460. connection_mark_unattached_ap(conn,
  1461. END_STREAM_REASON_CANT_FETCH_ORIG_DEST);
  1462. return -1;
  1463. }
  1464. /* we have the original destination */
  1465. control_event_stream_status(conn, STREAM_EVENT_NEW, 0);
  1466. return connection_ap_rewrite_and_attach_if_allowed(conn, NULL, NULL);
  1467. }
  1468. /** connection_edge_process_inbuf() found a conn in state natd_wait. See if
  1469. * conn-\>inbuf has the right bytes to proceed. See FreeBSD's libalias(3) and
  1470. * ProxyEncodeTcpStream() in src/lib/libalias/alias_proxy.c for the encoding
  1471. * form of the original destination.
  1472. *
  1473. * If the original destination is complete, send it to
  1474. * connection_ap_handshake_rewrite_and_attach().
  1475. *
  1476. * Return -1 if an unexpected error with conn (and it should be marked
  1477. * for close), else return 0.
  1478. */
  1479. static int
  1480. connection_ap_process_natd(entry_connection_t *conn)
  1481. {
  1482. char tmp_buf[36], *tbuf, *daddr;
  1483. size_t tlen = 30;
  1484. int err, port_ok;
  1485. socks_request_t *socks;
  1486. tor_assert(conn);
  1487. tor_assert(ENTRY_TO_CONN(conn)->state == AP_CONN_STATE_NATD_WAIT);
  1488. tor_assert(conn->socks_request);
  1489. socks = conn->socks_request;
  1490. log_debug(LD_APP,"entered.");
  1491. /* look for LF-terminated "[DEST ip_addr port]"
  1492. * where ip_addr is a dotted-quad and port is in string form */
  1493. err = connection_fetch_from_buf_line(ENTRY_TO_CONN(conn), tmp_buf, &tlen);
  1494. if (err == 0)
  1495. return 0;
  1496. if (err < 0) {
  1497. log_warn(LD_APP,"NATD handshake failed (DEST too long). Closing");
  1498. connection_mark_unattached_ap(conn, END_STREAM_REASON_INVALID_NATD_DEST);
  1499. return -1;
  1500. }
  1501. if (strcmpstart(tmp_buf, "[DEST ")) {
  1502. log_warn(LD_APP,"NATD handshake was ill-formed; closing. The client "
  1503. "said: %s",
  1504. escaped(tmp_buf));
  1505. connection_mark_unattached_ap(conn, END_STREAM_REASON_INVALID_NATD_DEST);
  1506. return -1;
  1507. }
  1508. daddr = tbuf = &tmp_buf[0] + 6; /* after end of "[DEST " */
  1509. if (!(tbuf = strchr(tbuf, ' '))) {
  1510. log_warn(LD_APP,"NATD handshake was ill-formed; closing. The client "
  1511. "said: %s",
  1512. escaped(tmp_buf));
  1513. connection_mark_unattached_ap(conn, END_STREAM_REASON_INVALID_NATD_DEST);
  1514. return -1;
  1515. }
  1516. *tbuf++ = '\0';
  1517. /* pretend that a socks handshake completed so we don't try to
  1518. * send a socks reply down a natd conn */
  1519. strlcpy(socks->address, daddr, sizeof(socks->address));
  1520. socks->port = (uint16_t)
  1521. tor_parse_long(tbuf, 10, 1, 65535, &port_ok, &daddr);
  1522. if (!port_ok) {
  1523. log_warn(LD_APP,"NATD handshake failed; port %s is ill-formed or out "
  1524. "of range.", escaped(tbuf));
  1525. connection_mark_unattached_ap(conn, END_STREAM_REASON_INVALID_NATD_DEST);
  1526. return -1;
  1527. }
  1528. socks->command = SOCKS_COMMAND_CONNECT;
  1529. socks->has_finished = 1;
  1530. control_event_stream_status(conn, STREAM_EVENT_NEW, 0);
  1531. ENTRY_TO_CONN(conn)->state = AP_CONN_STATE_CIRCUIT_WAIT;
  1532. return connection_ap_rewrite_and_attach_if_allowed(conn, NULL, NULL);
  1533. }
  1534. /** Iterate over the two bytes of stream_id until we get one that is not
  1535. * already in use; return it. Return 0 if can't get a unique stream_id.
  1536. */
  1537. streamid_t
  1538. get_unique_stream_id_by_circ(origin_circuit_t *circ)
  1539. {
  1540. edge_connection_t *tmpconn;
  1541. streamid_t test_stream_id;
  1542. uint32_t attempts=0;
  1543. again:
  1544. test_stream_id = circ->next_stream_id++;
  1545. if (++attempts > 1<<16) {
  1546. /* Make sure we don't loop forever if all stream_id's are used. */
  1547. log_warn(LD_APP,"No unused stream IDs. Failing.");
  1548. return 0;
  1549. }
  1550. if (test_stream_id == 0)
  1551. goto again;
  1552. for (tmpconn = circ->p_streams; tmpconn; tmpconn=tmpconn->next_stream)
  1553. if (tmpconn->stream_id == test_stream_id)
  1554. goto again;
  1555. return test_stream_id;
  1556. }
  1557. /** Return true iff <b>conn</b> is linked to a circuit and configured to use
  1558. * an exit that supports optimistic data. */
  1559. static int
  1560. connection_ap_supports_optimistic_data(const entry_connection_t *conn)
  1561. {
  1562. const edge_connection_t *edge_conn = ENTRY_TO_EDGE_CONN(conn);
  1563. /* We can only send optimistic data if we're connected to an open
  1564. general circuit. */
  1565. if (edge_conn->on_circuit == NULL ||
  1566. edge_conn->on_circuit->state != CIRCUIT_STATE_OPEN ||
  1567. edge_conn->on_circuit->purpose != CIRCUIT_PURPOSE_C_GENERAL)
  1568. return 0;
  1569. return conn->may_use_optimistic_data;
  1570. }
  1571. /** Return a bitmask of BEGIN_FLAG_* flags that we should transmit in the
  1572. * RELAY_BEGIN cell for <b>ap_conn</b>. */
  1573. static uint32_t
  1574. connection_ap_get_begincell_flags(entry_connection_t *ap_conn)
  1575. {
  1576. edge_connection_t *edge_conn = ENTRY_TO_EDGE_CONN(ap_conn);
  1577. const node_t *exitnode = NULL;
  1578. const crypt_path_t *cpath_layer = edge_conn->cpath_layer;
  1579. uint32_t flags = 0;
  1580. /* No flags for begindir */
  1581. if (ap_conn->use_begindir)
  1582. return 0;
  1583. /* No flags for hidden services. */
  1584. if (edge_conn->on_circuit->purpose != CIRCUIT_PURPOSE_C_GENERAL)
  1585. return 0;
  1586. /* If only IPv4 is supported, no flags */
  1587. if (ap_conn->ipv4_traffic_ok && !ap_conn->ipv6_traffic_ok)
  1588. return 0;
  1589. if (! cpath_layer ||
  1590. ! cpath_layer->extend_info)
  1591. return 0;
  1592. if (!ap_conn->ipv4_traffic_ok)
  1593. flags |= BEGIN_FLAG_IPV4_NOT_OK;
  1594. exitnode = node_get_by_id(cpath_layer->extend_info->identity_digest);
  1595. if (ap_conn->ipv6_traffic_ok && exitnode) {
  1596. tor_addr_t a;
  1597. tor_addr_make_null(&a, AF_INET6);
  1598. if (compare_tor_addr_to_node_policy(&a, ap_conn->socks_request->port,
  1599. exitnode)
  1600. != ADDR_POLICY_REJECTED) {
  1601. /* Only say "IPv6 OK" if the exit node supports IPv6. Otherwise there's
  1602. * no point. */
  1603. flags |= BEGIN_FLAG_IPV6_OK;
  1604. }
  1605. }
  1606. if (flags == BEGIN_FLAG_IPV6_OK) {
  1607. /* When IPv4 and IPv6 are both allowed, consider whether to say we
  1608. * prefer IPv6. Otherwise there's no point in declaring a preference */
  1609. if (ap_conn->prefer_ipv6_traffic)
  1610. flags |= BEGIN_FLAG_IPV6_PREFERRED;
  1611. }
  1612. if (flags == BEGIN_FLAG_IPV4_NOT_OK) {
  1613. log_warn(LD_BUG, "Hey; I'm about to ask a node for a connection that I "
  1614. "am telling it to fulfil with neither IPv4 nor IPv6. That's "
  1615. "probably not going to work.");
  1616. }
  1617. return flags;
  1618. }
  1619. /** Write a relay begin cell, using destaddr and destport from ap_conn's
  1620. * socks_request field, and send it down circ.
  1621. *
  1622. * If ap_conn is broken, mark it for close and return -1. Else return 0.
  1623. */
  1624. int
  1625. connection_ap_handshake_send_begin(entry_connection_t *ap_conn)
  1626. {
  1627. char payload[CELL_PAYLOAD_SIZE];
  1628. int payload_len;
  1629. int begin_type;
  1630. origin_circuit_t *circ;
  1631. edge_connection_t *edge_conn = ENTRY_TO_EDGE_CONN(ap_conn);
  1632. connection_t *base_conn = TO_CONN(edge_conn);
  1633. tor_assert(edge_conn->on_circuit);
  1634. circ = TO_ORIGIN_CIRCUIT(edge_conn->on_circuit);
  1635. tor_assert(base_conn->type == CONN_TYPE_AP);
  1636. tor_assert(base_conn->state == AP_CONN_STATE_CIRCUIT_WAIT);
  1637. tor_assert(ap_conn->socks_request);
  1638. tor_assert(SOCKS_COMMAND_IS_CONNECT(ap_conn->socks_request->command));
  1639. edge_conn->stream_id = get_unique_stream_id_by_circ(circ);
  1640. if (edge_conn->stream_id==0) {
  1641. /* XXXX024 Instead of closing this stream, we should make it get
  1642. * retried on another circuit. */
  1643. connection_mark_unattached_ap(ap_conn, END_STREAM_REASON_INTERNAL);
  1644. /* Mark this circuit "unusable for new streams". */
  1645. mark_circuit_unusable_for_new_conns(circ);
  1646. return -1;
  1647. }
  1648. /* Set up begin cell flags. */
  1649. edge_conn->begincell_flags = connection_ap_get_begincell_flags(ap_conn);
  1650. tor_snprintf(payload,RELAY_PAYLOAD_SIZE, "%s:%d",
  1651. (circ->base_.purpose == CIRCUIT_PURPOSE_C_GENERAL) ?
  1652. ap_conn->socks_request->address : "",
  1653. ap_conn->socks_request->port);
  1654. payload_len = (int)strlen(payload)+1;
  1655. if (payload_len <= RELAY_PAYLOAD_SIZE - 4 && edge_conn->begincell_flags) {
  1656. set_uint32(payload + payload_len, htonl(edge_conn->begincell_flags));
  1657. payload_len += 4;
  1658. }
  1659. log_info(LD_APP,
  1660. "Sending relay cell %d to begin stream %d.",
  1661. (int)ap_conn->use_begindir,
  1662. edge_conn->stream_id);
  1663. begin_type = ap_conn->use_begindir ?
  1664. RELAY_COMMAND_BEGIN_DIR : RELAY_COMMAND_BEGIN;
  1665. if (begin_type == RELAY_COMMAND_BEGIN) {
  1666. #ifndef NON_ANONYMOUS_MODE_ENABLED
  1667. tor_assert(circ->build_state->onehop_tunnel == 0);
  1668. #endif
  1669. }
  1670. if (connection_edge_send_command(edge_conn, begin_type,
  1671. begin_type == RELAY_COMMAND_BEGIN ? payload : NULL,
  1672. begin_type == RELAY_COMMAND_BEGIN ? payload_len : 0) < 0)
  1673. return -1; /* circuit is closed, don't continue */
  1674. edge_conn->package_window = STREAMWINDOW_START;
  1675. edge_conn->deliver_window = STREAMWINDOW_START;
  1676. base_conn->state = AP_CONN_STATE_CONNECT_WAIT;
  1677. log_info(LD_APP,"Address/port sent, ap socket "TOR_SOCKET_T_FORMAT
  1678. ", n_circ_id %u",
  1679. base_conn->s, (unsigned)circ->base_.n_circ_id);
  1680. control_event_stream_status(ap_conn, STREAM_EVENT_SENT_CONNECT, 0);
  1681. /* If there's queued-up data, send it now */
  1682. if ((connection_get_inbuf_len(base_conn) ||
  1683. ap_conn->sending_optimistic_data) &&
  1684. connection_ap_supports_optimistic_data(ap_conn)) {
  1685. log_info(LD_APP, "Sending up to %ld + %ld bytes of queued-up data",
  1686. (long)connection_get_inbuf_len(base_conn),
  1687. ap_conn->sending_optimistic_data ?
  1688. (long)generic_buffer_len(ap_conn->sending_optimistic_data) : 0);
  1689. if (connection_edge_package_raw_inbuf(edge_conn, 1, NULL) < 0) {
  1690. connection_mark_for_close(base_conn);
  1691. }
  1692. }
  1693. return 0;
  1694. }
  1695. /** Write a relay resolve cell, using destaddr and destport from ap_conn's
  1696. * socks_request field, and send it down circ.
  1697. *
  1698. * If ap_conn is broken, mark it for close and return -1. Else return 0.
  1699. */
  1700. int
  1701. connection_ap_handshake_send_resolve(entry_connection_t *ap_conn)
  1702. {
  1703. int payload_len, command;
  1704. const char *string_addr;
  1705. char inaddr_buf[REVERSE_LOOKUP_NAME_BUF_LEN];
  1706. origin_circuit_t *circ;
  1707. edge_connection_t *edge_conn = ENTRY_TO_EDGE_CONN(ap_conn);
  1708. connection_t *base_conn = TO_CONN(edge_conn);
  1709. tor_assert(edge_conn->on_circuit);
  1710. circ = TO_ORIGIN_CIRCUIT(edge_conn->on_circuit);
  1711. tor_assert(base_conn->type == CONN_TYPE_AP);
  1712. tor_assert(base_conn->state == AP_CONN_STATE_CIRCUIT_WAIT);
  1713. tor_assert(ap_conn->socks_request);
  1714. tor_assert(circ->base_.purpose == CIRCUIT_PURPOSE_C_GENERAL);
  1715. command = ap_conn->socks_request->command;
  1716. tor_assert(SOCKS_COMMAND_IS_RESOLVE(command));
  1717. edge_conn->stream_id = get_unique_stream_id_by_circ(circ);
  1718. if (edge_conn->stream_id==0) {
  1719. /* XXXX024 Instead of closing this stream, we should make it get
  1720. * retried on another circuit. */
  1721. connection_mark_unattached_ap(ap_conn, END_STREAM_REASON_INTERNAL);
  1722. /* Mark this circuit "unusable for new streams". */
  1723. mark_circuit_unusable_for_new_conns(circ);
  1724. return -1;
  1725. }
  1726. if (command == SOCKS_COMMAND_RESOLVE) {
  1727. string_addr = ap_conn->socks_request->address;
  1728. payload_len = (int)strlen(string_addr)+1;
  1729. } else {
  1730. /* command == SOCKS_COMMAND_RESOLVE_PTR */
  1731. const char *a = ap_conn->socks_request->address;
  1732. tor_addr_t addr;
  1733. int r;
  1734. /* We're doing a reverse lookup. The input could be an IP address, or
  1735. * could be an .in-addr.arpa or .ip6.arpa address */
  1736. r = tor_addr_parse_PTR_name(&addr, a, AF_UNSPEC, 1);
  1737. if (r <= 0) {
  1738. log_warn(LD_APP, "Rejecting ill-formed reverse lookup of %s",
  1739. safe_str_client(a));
  1740. connection_mark_unattached_ap(ap_conn, END_STREAM_REASON_INTERNAL);
  1741. return -1;
  1742. }
  1743. r = tor_addr_to_PTR_name(inaddr_buf, sizeof(inaddr_buf), &addr);
  1744. if (r < 0) {
  1745. log_warn(LD_BUG, "Couldn't generate reverse lookup hostname of %s",
  1746. safe_str_client(a));
  1747. connection_mark_unattached_ap(ap_conn, END_STREAM_REASON_INTERNAL);
  1748. return -1;
  1749. }
  1750. string_addr = inaddr_buf;
  1751. payload_len = (int)strlen(inaddr_buf)+1;
  1752. tor_assert(payload_len <= (int)sizeof(inaddr_buf));
  1753. }
  1754. log_debug(LD_APP,
  1755. "Sending relay cell to begin stream %d.", edge_conn->stream_id);
  1756. if (connection_edge_send_command(edge_conn,
  1757. RELAY_COMMAND_RESOLVE,
  1758. string_addr, payload_len) < 0)
  1759. return -1; /* circuit is closed, don't continue */
  1760. if (!base_conn->address) {
  1761. /* This might be unnecessary. XXXX */
  1762. base_conn->address = tor_dup_addr(&base_conn->addr);
  1763. }
  1764. base_conn->state = AP_CONN_STATE_RESOLVE_WAIT;
  1765. log_info(LD_APP,"Address sent for resolve, ap socket "TOR_SOCKET_T_FORMAT
  1766. ", n_circ_id %u",
  1767. base_conn->s, (unsigned)circ->base_.n_circ_id);
  1768. control_event_stream_status(ap_conn, STREAM_EVENT_SENT_RESOLVE, 0);
  1769. return 0;
  1770. }
  1771. /** Make an AP connection_t linked to the connection_t <b>partner</b>. make a
  1772. * new linked connection pair, and attach one side to the conn, connection_add
  1773. * it, initialize it to circuit_wait, and call
  1774. * connection_ap_handshake_attach_circuit(conn) on it.
  1775. *
  1776. * Return the newly created end of the linked connection pair, or -1 if error.
  1777. */
  1778. entry_connection_t *
  1779. connection_ap_make_link(connection_t *partner,
  1780. char *address, uint16_t port,
  1781. const char *digest,
  1782. int session_group, int isolation_flags,
  1783. int use_begindir, int want_onehop)
  1784. {
  1785. entry_connection_t *conn;
  1786. connection_t *base_conn;
  1787. log_info(LD_APP,"Making internal %s tunnel to %s:%d ...",
  1788. want_onehop ? "direct" : "anonymized",
  1789. safe_str_client(address), port);
  1790. conn = entry_connection_new(CONN_TYPE_AP, tor_addr_family(&partner->addr));
  1791. base_conn = ENTRY_TO_CONN(conn);
  1792. base_conn->linked = 1; /* so that we can add it safely below. */
  1793. /* populate conn->socks_request */
  1794. /* leave version at zero, so the socks_reply is empty */
  1795. conn->socks_request->socks_version = 0;
  1796. conn->socks_request->has_finished = 0; /* waiting for 'connected' */
  1797. strlcpy(conn->socks_request->address, address,
  1798. sizeof(conn->socks_request->address));
  1799. conn->socks_request->port = port;
  1800. conn->socks_request->command = SOCKS_COMMAND_CONNECT;
  1801. conn->want_onehop = want_onehop;
  1802. conn->use_begindir = use_begindir;
  1803. if (use_begindir) {
  1804. conn->chosen_exit_name = tor_malloc(HEX_DIGEST_LEN+2);
  1805. conn->chosen_exit_name[0] = '$';
  1806. tor_assert(digest);
  1807. base16_encode(conn->chosen_exit_name+1,HEX_DIGEST_LEN+1,
  1808. digest, DIGEST_LEN);
  1809. }
  1810. /* Populate isolation fields. */
  1811. conn->socks_request->listener_type = CONN_TYPE_DIR_LISTENER;
  1812. conn->original_dest_address = tor_strdup(address);
  1813. conn->session_group = session_group;
  1814. conn->isolation_flags = isolation_flags;
  1815. base_conn->address = tor_strdup("(Tor_internal)");
  1816. tor_addr_make_unspec(&base_conn->addr);
  1817. base_conn->port = 0;
  1818. connection_link_connections(partner, base_conn);
  1819. if (connection_add(base_conn) < 0) { /* no space, forget it */
  1820. connection_free(base_conn);
  1821. return NULL;
  1822. }
  1823. base_conn->state = AP_CONN_STATE_CIRCUIT_WAIT;
  1824. control_event_stream_status(conn, STREAM_EVENT_NEW, 0);
  1825. /* attaching to a dirty circuit is fine */
  1826. if (connection_ap_handshake_attach_circuit(conn) < 0) {
  1827. if (!base_conn->marked_for_close)
  1828. connection_mark_unattached_ap(conn, END_STREAM_REASON_CANT_ATTACH);
  1829. return NULL;
  1830. }
  1831. log_info(LD_APP,"... application connection created and linked.");
  1832. return conn;
  1833. }
  1834. /** Notify any interested controller connections about a new hostname resolve
  1835. * or resolve error. Takes the same arguments as does
  1836. * connection_ap_handshake_socks_resolved(). */
  1837. static void
  1838. tell_controller_about_resolved_result(entry_connection_t *conn,
  1839. int answer_type,
  1840. size_t answer_len,
  1841. const char *answer,
  1842. int ttl,
  1843. time_t expires)
  1844. {
  1845. expires = time(NULL) + ttl;
  1846. if (answer_type == RESOLVED_TYPE_IPV4 && answer_len >= 4) {
  1847. char *cp = tor_dup_ip(ntohl(get_uint32(answer)));
  1848. control_event_address_mapped(conn->socks_request->address,
  1849. cp, expires, NULL, 0);
  1850. tor_free(cp);
  1851. } else if (answer_type == RESOLVED_TYPE_HOSTNAME && answer_len < 256) {
  1852. char *cp = tor_strndup(answer, answer_len);
  1853. control_event_address_mapped(conn->socks_request->address,
  1854. cp, expires, NULL, 0);
  1855. tor_free(cp);
  1856. } else {
  1857. control_event_address_mapped(conn->socks_request->address,
  1858. "<error>", time(NULL)+ttl,
  1859. "error=yes", 0);
  1860. }
  1861. }
  1862. /** Send an answer to an AP connection that has requested a DNS lookup via
  1863. * SOCKS. The type should be one of RESOLVED_TYPE_(IPV4|IPV6|HOSTNAME) or -1
  1864. * for unreachable; the answer should be in the format specified in the socks
  1865. * extensions document. <b>ttl</b> is the ttl for the answer, or -1 on
  1866. * certain errors or for values that didn't come via DNS. <b>expires</b> is
  1867. * a time when the answer expires, or -1 or TIME_MAX if there's a good TTL.
  1868. **/
  1869. /* XXXX the use of the ttl and expires fields is nutty. Let's make this
  1870. * interface and those that use it less ugly. */
  1871. void
  1872. connection_ap_handshake_socks_resolved(entry_connection_t *conn,
  1873. int answer_type,
  1874. size_t answer_len,
  1875. const uint8_t *answer,
  1876. int ttl,
  1877. time_t expires)
  1878. {
  1879. char buf[384];
  1880. size_t replylen;
  1881. if (ttl >= 0) {
  1882. if (answer_type == RESOLVED_TYPE_IPV4 && answer_len == 4) {
  1883. tor_addr_t a;
  1884. tor_addr_from_ipv4n(&a, get_uint32(answer));
  1885. if (! tor_addr_is_null(&a)) {
  1886. client_dns_set_addressmap(conn,
  1887. conn->socks_request->address, &a,
  1888. conn->chosen_exit_name, ttl);
  1889. }
  1890. } else if (answer_type == RESOLVED_TYPE_IPV6 && answer_len == 16) {
  1891. tor_addr_t a;
  1892. tor_addr_from_ipv6_bytes(&a, (char*)answer);
  1893. if (! tor_addr_is_null(&a)) {
  1894. client_dns_set_addressmap(conn,
  1895. conn->socks_request->address, &a,
  1896. conn->chosen_exit_name, ttl);
  1897. }
  1898. } else if (answer_type == RESOLVED_TYPE_HOSTNAME && answer_len < 256) {
  1899. char *cp = tor_strndup((char*)answer, answer_len);
  1900. client_dns_set_reverse_addressmap(conn,
  1901. conn->socks_request->address,
  1902. cp,
  1903. conn->chosen_exit_name, ttl);
  1904. tor_free(cp);
  1905. }
  1906. }
  1907. if (ENTRY_TO_EDGE_CONN(conn)->is_dns_request) {
  1908. if (conn->dns_server_request) {
  1909. /* We had a request on our DNS port: answer it. */
  1910. dnsserv_resolved(conn, answer_type, answer_len, (char*)answer, ttl);
  1911. conn->socks_request->has_finished = 1;
  1912. return;
  1913. } else {
  1914. /* This must be a request from the controller. Since answers to those
  1915. * requests are not cached, they do not generate an ADDRMAP event on
  1916. * their own. */
  1917. tell_controller_about_resolved_result(conn, answer_type, answer_len,
  1918. (char*)answer, ttl, expires);
  1919. conn->socks_request->has_finished = 1;
  1920. return;
  1921. }
  1922. /* We shouldn't need to free conn here; it gets marked by the caller. */
  1923. }
  1924. if (conn->socks_request->socks_version == 4) {
  1925. buf[0] = 0x00; /* version */
  1926. if (answer_type == RESOLVED_TYPE_IPV4 && answer_len == 4) {
  1927. buf[1] = SOCKS4_GRANTED;
  1928. set_uint16(buf+2, 0);
  1929. memcpy(buf+4, answer, 4); /* address */
  1930. replylen = SOCKS4_NETWORK_LEN;
  1931. } else { /* "error" */
  1932. buf[1] = SOCKS4_REJECT;
  1933. memset(buf+2, 0, 6);
  1934. replylen = SOCKS4_NETWORK_LEN;
  1935. }
  1936. } else if (conn->socks_request->socks_version == 5) {
  1937. /* SOCKS5 */
  1938. buf[0] = 0x05; /* version */
  1939. if (answer_type == RESOLVED_TYPE_IPV4 && answer_len == 4) {
  1940. buf[1] = SOCKS5_SUCCEEDED;
  1941. buf[2] = 0; /* reserved */
  1942. buf[3] = 0x01; /* IPv4 address type */
  1943. memcpy(buf+4, answer, 4); /* address */
  1944. set_uint16(buf+8, 0); /* port == 0. */
  1945. replylen = 10;
  1946. } else if (answer_type == RESOLVED_TYPE_IPV6 && answer_len == 16) {
  1947. buf[1] = SOCKS5_SUCCEEDED;
  1948. buf[2] = 0; /* reserved */
  1949. buf[3] = 0x04; /* IPv6 address type */
  1950. memcpy(buf+4, answer, 16); /* address */
  1951. set_uint16(buf+20, 0); /* port == 0. */
  1952. replylen = 22;
  1953. } else if (answer_type == RESOLVED_TYPE_HOSTNAME && answer_len < 256) {
  1954. buf[1] = SOCKS5_SUCCEEDED;
  1955. buf[2] = 0; /* reserved */
  1956. buf[3] = 0x03; /* Domainname address type */
  1957. buf[4] = (char)answer_len;
  1958. memcpy(buf+5, answer, answer_len); /* address */
  1959. set_uint16(buf+5+answer_len, 0); /* port == 0. */
  1960. replylen = 5+answer_len+2;
  1961. } else {
  1962. buf[1] = SOCKS5_HOST_UNREACHABLE;
  1963. memset(buf+2, 0, 8);
  1964. replylen = 10;
  1965. }
  1966. } else {
  1967. /* no socks version info; don't send anything back */
  1968. return;
  1969. }
  1970. connection_ap_handshake_socks_reply(conn, buf, replylen,
  1971. (answer_type == RESOLVED_TYPE_IPV4 ||
  1972. answer_type == RESOLVED_TYPE_IPV6 ||
  1973. answer_type == RESOLVED_TYPE_HOSTNAME) ?
  1974. 0 : END_STREAM_REASON_RESOLVEFAILED);
  1975. }
  1976. /** Send a socks reply to stream <b>conn</b>, using the appropriate
  1977. * socks version, etc, and mark <b>conn</b> as completed with SOCKS
  1978. * handshaking.
  1979. *
  1980. * If <b>reply</b> is defined, then write <b>replylen</b> bytes of it to conn
  1981. * and return, else reply based on <b>endreason</b> (one of
  1982. * END_STREAM_REASON_*). If <b>reply</b> is undefined, <b>endreason</b> can't
  1983. * be 0 or REASON_DONE. Send endreason to the controller, if appropriate.
  1984. */
  1985. void
  1986. connection_ap_handshake_socks_reply(entry_connection_t *conn, char *reply,
  1987. size_t replylen, int endreason)
  1988. {
  1989. char buf[256];
  1990. socks5_reply_status_t status =
  1991. stream_end_reason_to_socks5_response(endreason);
  1992. tor_assert(conn->socks_request); /* make sure it's an AP stream */
  1993. if (!SOCKS_COMMAND_IS_RESOLVE(conn->socks_request->command)) {
  1994. control_event_stream_status(conn, status==SOCKS5_SUCCEEDED ?
  1995. STREAM_EVENT_SUCCEEDED : STREAM_EVENT_FAILED,
  1996. endreason);
  1997. }
  1998. /* Flag this stream's circuit as having completed a stream successfully
  1999. * (for path bias) */
  2000. if (status == SOCKS5_SUCCEEDED ||
  2001. endreason == END_STREAM_REASON_RESOLVEFAILED ||
  2002. endreason == END_STREAM_REASON_CONNECTREFUSED ||
  2003. endreason == END_STREAM_REASON_CONNRESET ||
  2004. endreason == END_STREAM_REASON_NOROUTE ||
  2005. endreason == END_STREAM_REASON_RESOURCELIMIT) {
  2006. if (!conn->edge_.on_circuit ||
  2007. !CIRCUIT_IS_ORIGIN(conn->edge_.on_circuit)) {
  2008. // DNS remaps can trigger this. So can failed hidden service
  2009. // lookups.
  2010. log_info(LD_BUG,
  2011. "No origin circuit for successful SOCKS stream "U64_FORMAT
  2012. ". Reason: %d",
  2013. U64_PRINTF_ARG(ENTRY_TO_CONN(conn)->global_identifier),
  2014. endreason);
  2015. } else {
  2016. // XXX: Hrmm. It looks like optimistic data can't go through this
  2017. // codepath, but someone should probably test it and make sure.
  2018. // We don't want to mark optimistically opened streams as successful.
  2019. pathbias_mark_use_success(TO_ORIGIN_CIRCUIT(conn->edge_.on_circuit));
  2020. }
  2021. }
  2022. if (conn->socks_request->has_finished) {
  2023. log_warn(LD_BUG, "(Harmless.) duplicate calls to "
  2024. "connection_ap_handshake_socks_reply.");
  2025. return;
  2026. }
  2027. if (replylen) { /* we already have a reply in mind */
  2028. connection_write_to_buf(reply, replylen, ENTRY_TO_CONN(conn));
  2029. conn->socks_request->has_finished = 1;
  2030. return;
  2031. }
  2032. if (conn->socks_request->socks_version == 4) {
  2033. memset(buf,0,SOCKS4_NETWORK_LEN);
  2034. buf[1] = (status==SOCKS5_SUCCEEDED ? SOCKS4_GRANTED : SOCKS4_REJECT);
  2035. /* leave version, destport, destip zero */
  2036. connection_write_to_buf(buf, SOCKS4_NETWORK_LEN, ENTRY_TO_CONN(conn));
  2037. } else if (conn->socks_request->socks_version == 5) {
  2038. buf[0] = 5; /* version 5 */
  2039. buf[1] = (char)status;
  2040. buf[2] = 0;
  2041. buf[3] = 1; /* ipv4 addr */
  2042. memset(buf+4,0,6); /* Set external addr/port to 0.
  2043. The spec doesn't seem to say what to do here. -RD */
  2044. connection_write_to_buf(buf,10,ENTRY_TO_CONN(conn));
  2045. }
  2046. /* If socks_version isn't 4 or 5, don't send anything.
  2047. * This can happen in the case of AP bridges. */
  2048. conn->socks_request->has_finished = 1;
  2049. return;
  2050. }
  2051. /** Read a RELAY_BEGIN or RELAY_BEGINDIR cell from <b>cell</b>, decode it, and
  2052. * place the result in <b>bcell</b>. On success return 0; on failure return
  2053. * <0 and set *<b>end_reason_out</b> to the end reason we should send back to
  2054. * the client.
  2055. *
  2056. * Return -1 in the case where want to send a RELAY_END cell, and < -1 when
  2057. * we don't.
  2058. **/
  2059. /* static */ int
  2060. begin_cell_parse(const cell_t *cell, begin_cell_t *bcell,
  2061. uint8_t *end_reason_out)
  2062. {
  2063. relay_header_t rh;
  2064. const uint8_t *body, *nul;
  2065. memset(bcell, 0, sizeof(*bcell));
  2066. *end_reason_out = END_STREAM_REASON_MISC;
  2067. relay_header_unpack(&rh, cell->payload);
  2068. if (rh.length > RELAY_PAYLOAD_SIZE) {
  2069. return -2; /*XXXX why not TORPROTOCOL? */
  2070. }
  2071. bcell->stream_id = rh.stream_id;
  2072. if (rh.command == RELAY_COMMAND_BEGIN_DIR) {
  2073. bcell->is_begindir = 1;
  2074. return 0;
  2075. } else if (rh.command != RELAY_COMMAND_BEGIN) {
  2076. log_warn(LD_BUG, "Got an unexpected command %d", (int)rh.command);
  2077. *end_reason_out = END_STREAM_REASON_INTERNAL;
  2078. return -1;
  2079. }
  2080. body = cell->payload + RELAY_HEADER_SIZE;
  2081. nul = memchr(body, 0, rh.length);
  2082. if (! nul) {
  2083. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  2084. "Relay begin cell has no \\0. Closing.");
  2085. *end_reason_out = END_STREAM_REASON_TORPROTOCOL;
  2086. return -1;
  2087. }
  2088. if (tor_addr_port_split(LOG_PROTOCOL_WARN,
  2089. (char*)(body),
  2090. &bcell->address,&bcell->port)<0) {
  2091. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  2092. "Unable to parse addr:port in relay begin cell. Closing.");
  2093. *end_reason_out = END_STREAM_REASON_TORPROTOCOL;
  2094. return -1;
  2095. }
  2096. if (bcell->port == 0) {
  2097. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  2098. "Missing port in relay begin cell. Closing.");
  2099. tor_free(bcell->address);
  2100. *end_reason_out = END_STREAM_REASON_TORPROTOCOL;
  2101. return -1;
  2102. }
  2103. if (body + rh.length >= nul + 4)
  2104. bcell->flags = ntohl(get_uint32(nul+1));
  2105. return 0;
  2106. }
  2107. /** A relay 'begin' or 'begin_dir' cell has arrived, and either we are
  2108. * an exit hop for the circuit, or we are the origin and it is a
  2109. * rendezvous begin.
  2110. *
  2111. * Launch a new exit connection and initialize things appropriately.
  2112. *
  2113. * If it's a rendezvous stream, call connection_exit_connect() on
  2114. * it.
  2115. *
  2116. * For general streams, call dns_resolve() on it first, and only call
  2117. * connection_exit_connect() if the dns answer is already known.
  2118. *
  2119. * Note that we don't call connection_add() on the new stream! We wait
  2120. * for connection_exit_connect() to do that.
  2121. *
  2122. * Return -(some circuit end reason) if we want to tear down <b>circ</b>.
  2123. * Else return 0.
  2124. */
  2125. int
  2126. connection_exit_begin_conn(cell_t *cell, circuit_t *circ)
  2127. {
  2128. edge_connection_t *n_stream;
  2129. relay_header_t rh;
  2130. char *address = NULL;
  2131. uint16_t port = 0;
  2132. or_circuit_t *or_circ = NULL;
  2133. const or_options_t *options = get_options();
  2134. begin_cell_t bcell;
  2135. int r;
  2136. uint8_t end_reason=0;
  2137. assert_circuit_ok(circ);
  2138. if (!CIRCUIT_IS_ORIGIN(circ))
  2139. or_circ = TO_OR_CIRCUIT(circ);
  2140. relay_header_unpack(&rh, cell->payload);
  2141. if (rh.length > RELAY_PAYLOAD_SIZE)
  2142. return -1;
  2143. /* Note: we have to use relay_send_command_from_edge here, not
  2144. * connection_edge_end or connection_edge_send_command, since those require
  2145. * that we have a stream connected to a circuit, and we don't connect to a
  2146. * circuit until we have a pending/successful resolve. */
  2147. if (!server_mode(options) &&
  2148. circ->purpose != CIRCUIT_PURPOSE_S_REND_JOINED) {
  2149. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  2150. "Relay begin cell at non-server. Closing.");
  2151. relay_send_end_cell_from_edge(rh.stream_id, circ,
  2152. END_STREAM_REASON_EXITPOLICY, NULL);
  2153. return 0;
  2154. }
  2155. r = begin_cell_parse(cell, &bcell, &end_reason);
  2156. if (r < -1) {
  2157. return -1;
  2158. } else if (r == -1) {
  2159. tor_free(bcell.address);
  2160. relay_send_end_cell_from_edge(rh.stream_id, circ, end_reason, NULL);
  2161. return 0;
  2162. }
  2163. if (! bcell.is_begindir) {
  2164. /* Steal reference */
  2165. address = bcell.address;
  2166. port = bcell.port;
  2167. if (or_circ && or_circ->p_chan) {
  2168. if (!options->AllowSingleHopExits &&
  2169. (or_circ->is_first_hop ||
  2170. (!connection_or_digest_is_known_relay(
  2171. or_circ->p_chan->identity_digest) &&
  2172. should_refuse_unknown_exits(options)))) {
  2173. /* Don't let clients use us as a single-hop proxy, unless the user
  2174. * has explicitly allowed that in the config. It attracts attackers
  2175. * and users who'd be better off with, well, single-hop proxies.
  2176. */
  2177. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  2178. "Attempt by %s to open a stream %s. Closing.",
  2179. safe_str(channel_get_canonical_remote_descr(or_circ->p_chan)),
  2180. or_circ->is_first_hop ? "on first hop of circuit" :
  2181. "from unknown relay");
  2182. relay_send_end_cell_from_edge(rh.stream_id, circ,
  2183. or_circ->is_first_hop ?
  2184. END_STREAM_REASON_TORPROTOCOL :
  2185. END_STREAM_REASON_MISC,
  2186. NULL);
  2187. tor_free(address);
  2188. return 0;
  2189. }
  2190. }
  2191. } else if (rh.command == RELAY_COMMAND_BEGIN_DIR) {
  2192. if (!directory_permits_begindir_requests(options) ||
  2193. circ->purpose != CIRCUIT_PURPOSE_OR) {
  2194. relay_send_end_cell_from_edge(rh.stream_id, circ,
  2195. END_STREAM_REASON_NOTDIRECTORY, NULL);
  2196. return 0;
  2197. }
  2198. /* Make sure to get the 'real' address of the previous hop: the
  2199. * caller might want to know whether his IP address has changed, and
  2200. * we might already have corrected base_.addr[ess] for the relay's
  2201. * canonical IP address. */
  2202. if (or_circ && or_circ->p_chan)
  2203. address = tor_strdup(channel_get_actual_remote_address(or_circ->p_chan));
  2204. else
  2205. address = tor_strdup("127.0.0.1");
  2206. port = 1; /* XXXX This value is never actually used anywhere, and there
  2207. * isn't "really" a connection here. But we
  2208. * need to set it to something nonzero. */
  2209. } else {
  2210. log_warn(LD_BUG, "Got an unexpected command %d", (int)rh.command);
  2211. relay_send_end_cell_from_edge(rh.stream_id, circ,
  2212. END_STREAM_REASON_INTERNAL, NULL);
  2213. return 0;
  2214. }
  2215. if (! options->IPv6Exit) {
  2216. /* I don't care if you prefer IPv6; I can't give you any. */
  2217. bcell.flags &= ~BEGIN_FLAG_IPV6_PREFERRED;
  2218. /* If you don't want IPv4, I can't help. */
  2219. if (bcell.flags & BEGIN_FLAG_IPV4_NOT_OK) {
  2220. tor_free(address);
  2221. relay_send_end_cell_from_edge(rh.stream_id, circ,
  2222. END_STREAM_REASON_EXITPOLICY, NULL);
  2223. return 0;
  2224. }
  2225. }
  2226. log_debug(LD_EXIT,"Creating new exit connection.");
  2227. /* The 'AF_INET' here is temporary; we might need to change it later in
  2228. * connection_exit_connect(). */
  2229. n_stream = edge_connection_new(CONN_TYPE_EXIT, AF_INET);
  2230. /* Remember the tunneled request ID in the new edge connection, so that
  2231. * we can measure download times. */
  2232. n_stream->dirreq_id = circ->dirreq_id;
  2233. n_stream->base_.purpose = EXIT_PURPOSE_CONNECT;
  2234. n_stream->begincell_flags = bcell.flags;
  2235. n_stream->stream_id = rh.stream_id;
  2236. n_stream->base_.port = port;
  2237. /* leave n_stream->s at -1, because it's not yet valid */
  2238. n_stream->package_window = STREAMWINDOW_START;
  2239. n_stream->deliver_window = STREAMWINDOW_START;
  2240. if (circ->purpose == CIRCUIT_PURPOSE_S_REND_JOINED) {
  2241. origin_circuit_t *origin_circ = TO_ORIGIN_CIRCUIT(circ);
  2242. log_info(LD_REND,"begin is for rendezvous. configuring stream.");
  2243. n_stream->base_.address = tor_strdup("(rendezvous)");
  2244. n_stream->base_.state = EXIT_CONN_STATE_CONNECTING;
  2245. n_stream->rend_data = rend_data_dup(origin_circ->rend_data);
  2246. tor_assert(connection_edge_is_rendezvous_stream(n_stream));
  2247. assert_circuit_ok(circ);
  2248. if (rend_service_set_connection_addr_port(n_stream, origin_circ) < 0) {
  2249. log_info(LD_REND,"Didn't find rendezvous service (port %d)",
  2250. n_stream->base_.port);
  2251. relay_send_end_cell_from_edge(rh.stream_id, circ,
  2252. END_STREAM_REASON_EXITPOLICY,
  2253. origin_circ->cpath->prev);
  2254. connection_free(TO_CONN(n_stream));
  2255. tor_free(address);
  2256. return 0;
  2257. }
  2258. assert_circuit_ok(circ);
  2259. log_debug(LD_REND,"Finished assigning addr/port");
  2260. n_stream->cpath_layer = origin_circ->cpath->prev; /* link it */
  2261. /* add it into the linked list of p_streams on this circuit */
  2262. n_stream->next_stream = origin_circ->p_streams;
  2263. n_stream->on_circuit = circ;
  2264. origin_circ->p_streams = n_stream;
  2265. assert_circuit_ok(circ);
  2266. connection_exit_connect(n_stream);
  2267. /* For path bias: This circuit was used successfully */
  2268. pathbias_mark_use_success(origin_circ);
  2269. tor_free(address);
  2270. return 0;
  2271. }
  2272. tor_strlower(address);
  2273. n_stream->base_.address = address;
  2274. n_stream->base_.state = EXIT_CONN_STATE_RESOLVEFAILED;
  2275. /* default to failed, change in dns_resolve if it turns out not to fail */
  2276. if (we_are_hibernating()) {
  2277. relay_send_end_cell_from_edge(rh.stream_id, circ,
  2278. END_STREAM_REASON_HIBERNATING, NULL);
  2279. connection_free(TO_CONN(n_stream));
  2280. return 0;
  2281. }
  2282. n_stream->on_circuit = circ;
  2283. if (rh.command == RELAY_COMMAND_BEGIN_DIR) {
  2284. tor_addr_t tmp_addr;
  2285. tor_assert(or_circ);
  2286. if (or_circ->p_chan &&
  2287. channel_get_addr_if_possible(or_circ->p_chan, &tmp_addr)) {
  2288. tor_addr_copy(&n_stream->base_.addr, &tmp_addr);
  2289. }
  2290. return connection_exit_connect_dir(n_stream);
  2291. }
  2292. log_debug(LD_EXIT,"about to start the dns_resolve().");
  2293. /* send it off to the gethostbyname farm */
  2294. switch (dns_resolve(n_stream)) {
  2295. case 1: /* resolve worked; now n_stream is attached to circ. */
  2296. assert_circuit_ok(circ);
  2297. log_debug(LD_EXIT,"about to call connection_exit_connect().");
  2298. connection_exit_connect(n_stream);
  2299. return 0;
  2300. case -1: /* resolve failed */
  2301. relay_send_end_cell_from_edge(rh.stream_id, circ,
  2302. END_STREAM_REASON_RESOLVEFAILED, NULL);
  2303. /* n_stream got freed. don't touch it. */
  2304. break;
  2305. case 0: /* resolve added to pending list */
  2306. assert_circuit_ok(circ);
  2307. break;
  2308. }
  2309. return 0;
  2310. }
  2311. /**
  2312. * Called when we receive a RELAY_COMMAND_RESOLVE cell 'cell' along the
  2313. * circuit <b>circ</b>;
  2314. * begin resolving the hostname, and (eventually) reply with a RESOLVED cell.
  2315. */
  2316. int
  2317. connection_exit_begin_resolve(cell_t *cell, or_circuit_t *circ)
  2318. {
  2319. edge_connection_t *dummy_conn;
  2320. relay_header_t rh;
  2321. assert_circuit_ok(TO_CIRCUIT(circ));
  2322. relay_header_unpack(&rh, cell->payload);
  2323. if (rh.length > RELAY_PAYLOAD_SIZE)
  2324. return -1;
  2325. /* This 'dummy_conn' only exists to remember the stream ID
  2326. * associated with the resolve request; and to make the
  2327. * implementation of dns.c more uniform. (We really only need to
  2328. * remember the circuit, the stream ID, and the hostname to be
  2329. * resolved; but if we didn't store them in a connection like this,
  2330. * the housekeeping in dns.c would get way more complicated.)
  2331. */
  2332. dummy_conn = edge_connection_new(CONN_TYPE_EXIT, AF_INET);
  2333. dummy_conn->stream_id = rh.stream_id;
  2334. dummy_conn->base_.address = tor_strndup(
  2335. (char*)cell->payload+RELAY_HEADER_SIZE,
  2336. rh.length);
  2337. dummy_conn->base_.port = 0;
  2338. dummy_conn->base_.state = EXIT_CONN_STATE_RESOLVEFAILED;
  2339. dummy_conn->base_.purpose = EXIT_PURPOSE_RESOLVE;
  2340. dummy_conn->on_circuit = TO_CIRCUIT(circ);
  2341. /* send it off to the gethostbyname farm */
  2342. switch (dns_resolve(dummy_conn)) {
  2343. case -1: /* Impossible to resolve; a resolved cell was sent. */
  2344. /* Connection freed; don't touch it. */
  2345. return 0;
  2346. case 1: /* The result was cached; a resolved cell was sent. */
  2347. if (!dummy_conn->base_.marked_for_close)
  2348. connection_free(TO_CONN(dummy_conn));
  2349. return 0;
  2350. case 0: /* resolve added to pending list */
  2351. assert_circuit_ok(TO_CIRCUIT(circ));
  2352. break;
  2353. }
  2354. return 0;
  2355. }
  2356. /** Connect to conn's specified addr and port. If it worked, conn
  2357. * has now been added to the connection_array.
  2358. *
  2359. * Send back a connected cell. Include the resolved IP of the destination
  2360. * address, but <em>only</em> if it's a general exit stream. (Rendezvous
  2361. * streams must not reveal what IP they connected to.)
  2362. */
  2363. void
  2364. connection_exit_connect(edge_connection_t *edge_conn)
  2365. {
  2366. const tor_addr_t *addr;
  2367. uint16_t port;
  2368. connection_t *conn = TO_CONN(edge_conn);
  2369. int socket_error = 0;
  2370. if ( (!connection_edge_is_rendezvous_stream(edge_conn) &&
  2371. router_compare_to_my_exit_policy(&edge_conn->base_.addr,
  2372. edge_conn->base_.port)) ||
  2373. (tor_addr_family(&conn->addr) == AF_INET6 &&
  2374. ! get_options()->IPv6Exit)) {
  2375. log_info(LD_EXIT,"%s:%d failed exit policy. Closing.",
  2376. escaped_safe_str_client(conn->address), conn->port);
  2377. connection_edge_end(edge_conn, END_STREAM_REASON_EXITPOLICY);
  2378. circuit_detach_stream(circuit_get_by_edge_conn(edge_conn), edge_conn);
  2379. connection_free(conn);
  2380. return;
  2381. }
  2382. addr = &conn->addr;
  2383. port = conn->port;
  2384. if (tor_addr_family(addr) == AF_INET6)
  2385. conn->socket_family = AF_INET6;
  2386. log_debug(LD_EXIT,"about to try connecting");
  2387. switch (connection_connect(conn, conn->address, addr, port, &socket_error)) {
  2388. case -1: {
  2389. int reason = errno_to_stream_end_reason(socket_error);
  2390. connection_edge_end(edge_conn, reason);
  2391. circuit_detach_stream(circuit_get_by_edge_conn(edge_conn), edge_conn);
  2392. connection_free(conn);
  2393. return;
  2394. }
  2395. case 0:
  2396. conn->state = EXIT_CONN_STATE_CONNECTING;
  2397. connection_watch_events(conn, READ_EVENT | WRITE_EVENT);
  2398. /* writable indicates finish;
  2399. * readable/error indicates broken link in windows-land. */
  2400. return;
  2401. /* case 1: fall through */
  2402. }
  2403. conn->state = EXIT_CONN_STATE_OPEN;
  2404. if (connection_get_outbuf_len(conn)) {
  2405. /* in case there are any queued data cells */
  2406. log_warn(LD_BUG,"newly connected conn had data waiting!");
  2407. // connection_start_writing(conn);
  2408. }
  2409. IF_HAS_NO_BUFFEREVENT(conn)
  2410. connection_watch_events(conn, READ_EVENT);
  2411. /* also, deliver a 'connected' cell back through the circuit. */
  2412. if (connection_edge_is_rendezvous_stream(edge_conn)) {
  2413. /* rendezvous stream */
  2414. /* don't send an address back! */
  2415. connection_edge_send_command(edge_conn,
  2416. RELAY_COMMAND_CONNECTED,
  2417. NULL, 0);
  2418. } else { /* normal stream */
  2419. uint8_t connected_payload[MAX_CONNECTED_CELL_PAYLOAD_LEN];
  2420. int connected_payload_len =
  2421. connected_cell_format_payload(connected_payload, &conn->addr,
  2422. edge_conn->address_ttl);
  2423. if (connected_payload_len < 0) {
  2424. connection_edge_end(edge_conn, END_STREAM_REASON_INTERNAL);
  2425. circuit_detach_stream(circuit_get_by_edge_conn(edge_conn), edge_conn);
  2426. connection_free(conn);
  2427. return;
  2428. }
  2429. connection_edge_send_command(edge_conn,
  2430. RELAY_COMMAND_CONNECTED,
  2431. (char*)connected_payload,
  2432. connected_payload_len);
  2433. }
  2434. }
  2435. /** Given an exit conn that should attach to us as a directory server, open a
  2436. * bridge connection with a linked connection pair, create a new directory
  2437. * conn, and join them together. Return 0 on success (or if there was an
  2438. * error we could send back an end cell for). Return -(some circuit end
  2439. * reason) if the circuit needs to be torn down. Either connects
  2440. * <b>exitconn</b>, frees it, or marks it, as appropriate.
  2441. */
  2442. static int
  2443. connection_exit_connect_dir(edge_connection_t *exitconn)
  2444. {
  2445. dir_connection_t *dirconn = NULL;
  2446. or_circuit_t *circ = TO_OR_CIRCUIT(exitconn->on_circuit);
  2447. log_info(LD_EXIT, "Opening local connection for anonymized directory exit");
  2448. exitconn->base_.state = EXIT_CONN_STATE_OPEN;
  2449. dirconn = dir_connection_new(tor_addr_family(&exitconn->base_.addr));
  2450. tor_addr_copy(&dirconn->base_.addr, &exitconn->base_.addr);
  2451. dirconn->base_.port = 0;
  2452. dirconn->base_.address = tor_strdup(exitconn->base_.address);
  2453. dirconn->base_.type = CONN_TYPE_DIR;
  2454. dirconn->base_.purpose = DIR_PURPOSE_SERVER;
  2455. dirconn->base_.state = DIR_CONN_STATE_SERVER_COMMAND_WAIT;
  2456. /* Note that the new dir conn belongs to the same tunneled request as
  2457. * the edge conn, so that we can measure download times. */
  2458. dirconn->dirreq_id = exitconn->dirreq_id;
  2459. connection_link_connections(TO_CONN(dirconn), TO_CONN(exitconn));
  2460. if (connection_add(TO_CONN(exitconn))<0) {
  2461. connection_edge_end(exitconn, END_STREAM_REASON_RESOURCELIMIT);
  2462. connection_free(TO_CONN(exitconn));
  2463. connection_free(TO_CONN(dirconn));
  2464. return 0;
  2465. }
  2466. /* link exitconn to circ, now that we know we can use it. */
  2467. exitconn->next_stream = circ->n_streams;
  2468. circ->n_streams = exitconn;
  2469. if (connection_add(TO_CONN(dirconn))<0) {
  2470. connection_edge_end(exitconn, END_STREAM_REASON_RESOURCELIMIT);
  2471. connection_close_immediate(TO_CONN(exitconn));
  2472. connection_mark_for_close(TO_CONN(exitconn));
  2473. connection_free(TO_CONN(dirconn));
  2474. return 0;
  2475. }
  2476. connection_start_reading(TO_CONN(dirconn));
  2477. connection_start_reading(TO_CONN(exitconn));
  2478. if (connection_edge_send_command(exitconn,
  2479. RELAY_COMMAND_CONNECTED, NULL, 0) < 0) {
  2480. connection_mark_for_close(TO_CONN(exitconn));
  2481. connection_mark_for_close(TO_CONN(dirconn));
  2482. return 0;
  2483. }
  2484. return 0;
  2485. }
  2486. /** Return 1 if <b>conn</b> is a rendezvous stream, or 0 if
  2487. * it is a general stream.
  2488. */
  2489. int
  2490. connection_edge_is_rendezvous_stream(edge_connection_t *conn)
  2491. {
  2492. tor_assert(conn);
  2493. if (conn->rend_data)
  2494. return 1;
  2495. return 0;
  2496. }
  2497. /** Return 1 if router <b>exit</b> is likely to allow stream <b>conn</b>
  2498. * to exit from it, or 0 if it probably will not allow it.
  2499. * (We might be uncertain if conn's destination address has not yet been
  2500. * resolved.)
  2501. */
  2502. int
  2503. connection_ap_can_use_exit(const entry_connection_t *conn, const node_t *exit)
  2504. {
  2505. const or_options_t *options = get_options();
  2506. tor_assert(conn);
  2507. tor_assert(conn->socks_request);
  2508. tor_assert(exit);
  2509. /* If a particular exit node has been requested for the new connection,
  2510. * make sure the exit node of the existing circuit matches exactly.
  2511. */
  2512. if (conn->chosen_exit_name) {
  2513. const node_t *chosen_exit =
  2514. node_get_by_nickname(conn->chosen_exit_name, 1);
  2515. if (!chosen_exit || tor_memneq(chosen_exit->identity,
  2516. exit->identity, DIGEST_LEN)) {
  2517. /* doesn't match */
  2518. // log_debug(LD_APP,"Requested node '%s', considering node '%s'. No.",
  2519. // conn->chosen_exit_name, exit->nickname);
  2520. return 0;
  2521. }
  2522. }
  2523. if (conn->use_begindir) {
  2524. /* Internal directory fetches do not count as exiting. */
  2525. return 1;
  2526. }
  2527. if (conn->socks_request->command == SOCKS_COMMAND_CONNECT) {
  2528. tor_addr_t addr, *addrp = NULL;
  2529. addr_policy_result_t r;
  2530. if (0 == tor_addr_parse(&addr, conn->socks_request->address)) {
  2531. addrp = &addr;
  2532. } else if (!conn->ipv4_traffic_ok && conn->ipv6_traffic_ok) {
  2533. tor_addr_make_null(&addr, AF_INET6);
  2534. addrp = &addr;
  2535. } else if (conn->ipv4_traffic_ok && !conn->ipv6_traffic_ok) {
  2536. tor_addr_make_null(&addr, AF_INET);
  2537. addrp = &addr;
  2538. }
  2539. r = compare_tor_addr_to_node_policy(addrp, conn->socks_request->port,exit);
  2540. if (r == ADDR_POLICY_REJECTED)
  2541. return 0; /* We know the address, and the exit policy rejects it. */
  2542. if (r == ADDR_POLICY_PROBABLY_REJECTED && !conn->chosen_exit_name)
  2543. return 0; /* We don't know the addr, but the exit policy rejects most
  2544. * addresses with this port. Since the user didn't ask for
  2545. * this node, err on the side of caution. */
  2546. } else if (SOCKS_COMMAND_IS_RESOLVE(conn->socks_request->command)) {
  2547. /* Don't send DNS requests to non-exit servers by default. */
  2548. if (!conn->chosen_exit_name && node_exit_policy_rejects_all(exit))
  2549. return 0;
  2550. }
  2551. if (routerset_contains_node(options->ExcludeExitNodesUnion_, exit)) {
  2552. /* Not a suitable exit. Refuse it. */
  2553. return 0;
  2554. }
  2555. return 1;
  2556. }
  2557. /** If address is of the form "y.onion" with a well-formed handle y:
  2558. * Put a NUL after y, lower-case it, and return ONION_HOSTNAME.
  2559. *
  2560. * If address is of the form "x.y.onion" with a well-formed handle x:
  2561. * Drop "x.", put a NUL after y, lower-case it, and return ONION_HOSTNAME.
  2562. *
  2563. * If address is of the form "y.onion" with a badly-formed handle y:
  2564. * Return BAD_HOSTNAME and log a message.
  2565. *
  2566. * If address is of the form "y.exit":
  2567. * Put a NUL after y and return EXIT_HOSTNAME.
  2568. *
  2569. * Otherwise:
  2570. * Return NORMAL_HOSTNAME and change nothing.
  2571. */
  2572. hostname_type_t
  2573. parse_extended_hostname(char *address)
  2574. {
  2575. char *s;
  2576. char *q;
  2577. char query[REND_SERVICE_ID_LEN_BASE32+1];
  2578. s = strrchr(address,'.');
  2579. if (!s)
  2580. return NORMAL_HOSTNAME; /* no dot, thus normal */
  2581. if (!strcmp(s+1,"exit")) {
  2582. *s = 0; /* NUL-terminate it */
  2583. return EXIT_HOSTNAME; /* .exit */
  2584. }
  2585. if (strcmp(s+1,"onion"))
  2586. return NORMAL_HOSTNAME; /* neither .exit nor .onion, thus normal */
  2587. /* so it is .onion */
  2588. *s = 0; /* NUL-terminate it */
  2589. /* locate a 'sub-domain' component, in order to remove it */
  2590. q = strrchr(address, '.');
  2591. if (q == address) {
  2592. goto failed; /* reject sub-domain, as DNS does */
  2593. }
  2594. q = (NULL == q) ? address : q + 1;
  2595. if (strlcpy(query, q, REND_SERVICE_ID_LEN_BASE32+1) >=
  2596. REND_SERVICE_ID_LEN_BASE32+1)
  2597. goto failed;
  2598. if (q != address) {
  2599. memmove(address, q, strlen(q) + 1 /* also get \0 */);
  2600. }
  2601. if (rend_valid_service_id(query)) {
  2602. return ONION_HOSTNAME; /* success */
  2603. }
  2604. failed:
  2605. /* otherwise, return to previous state and return 0 */
  2606. *s = '.';
  2607. log_warn(LD_APP, "Invalid onion hostname %s; rejecting",
  2608. safe_str_client(address));
  2609. return BAD_HOSTNAME;
  2610. }
  2611. /** Return true iff the (possibly NULL) <b>alen</b>-byte chunk of memory at
  2612. * <b>a</b> is equal to the (possibly NULL) <b>blen</b>-byte chunk of memory
  2613. * at <b>b</b>. */
  2614. static int
  2615. memeq_opt(const char *a, size_t alen, const char *b, size_t blen)
  2616. {
  2617. if (a == NULL) {
  2618. return (b == NULL);
  2619. } else if (b == NULL) {
  2620. return 0;
  2621. } else if (alen != blen) {
  2622. return 0;
  2623. } else {
  2624. return tor_memeq(a, b, alen);
  2625. }
  2626. }
  2627. /**
  2628. * Return true iff none of the isolation flags and fields in <b>conn</b>
  2629. * should prevent it from being attached to <b>circ</b>.
  2630. */
  2631. int
  2632. connection_edge_compatible_with_circuit(const entry_connection_t *conn,
  2633. const origin_circuit_t *circ)
  2634. {
  2635. const uint8_t iso = conn->isolation_flags;
  2636. const socks_request_t *sr = conn->socks_request;
  2637. /* If circ has never been used for an isolated connection, we can
  2638. * totally use it for this one. */
  2639. if (!circ->isolation_values_set)
  2640. return 1;
  2641. /* If circ has been used for connections having more than one value
  2642. * for some field f, it will have the corresponding bit set in
  2643. * isolation_flags_mixed. If isolation_flags_mixed has any bits
  2644. * in common with iso, then conn must be isolated from at least
  2645. * one stream that has been attached to circ. */
  2646. if ((iso & circ->isolation_flags_mixed) != 0) {
  2647. /* For at least one field where conn is isolated, the circuit
  2648. * already has mixed streams. */
  2649. return 0;
  2650. }
  2651. if (! conn->original_dest_address) {
  2652. log_warn(LD_BUG, "Reached connection_edge_compatible_with_circuit without "
  2653. "having set conn->original_dest_address");
  2654. ((entry_connection_t*)conn)->original_dest_address =
  2655. tor_strdup(conn->socks_request->address);
  2656. }
  2657. if ((iso & ISO_STREAM) &&
  2658. (circ->associated_isolated_stream_global_id !=
  2659. ENTRY_TO_CONN(conn)->global_identifier))
  2660. return 0;
  2661. if ((iso & ISO_DESTPORT) && conn->socks_request->port != circ->dest_port)
  2662. return 0;
  2663. if ((iso & ISO_DESTADDR) &&
  2664. strcasecmp(conn->original_dest_address, circ->dest_address))
  2665. return 0;
  2666. if ((iso & ISO_SOCKSAUTH) &&
  2667. (! memeq_opt(sr->username, sr->usernamelen,
  2668. circ->socks_username, circ->socks_username_len) ||
  2669. ! memeq_opt(sr->password, sr->passwordlen,
  2670. circ->socks_password, circ->socks_password_len)))
  2671. return 0;
  2672. if ((iso & ISO_CLIENTPROTO) &&
  2673. (conn->socks_request->listener_type != circ->client_proto_type ||
  2674. conn->socks_request->socks_version != circ->client_proto_socksver))
  2675. return 0;
  2676. if ((iso & ISO_CLIENTADDR) &&
  2677. !tor_addr_eq(&ENTRY_TO_CONN(conn)->addr, &circ->client_addr))
  2678. return 0;
  2679. if ((iso & ISO_SESSIONGRP) && conn->session_group != circ->session_group)
  2680. return 0;
  2681. if ((iso & ISO_NYM_EPOCH) && conn->nym_epoch != circ->nym_epoch)
  2682. return 0;
  2683. return 1;
  2684. }
  2685. /**
  2686. * If <b>dry_run</b> is false, update <b>circ</b>'s isolation flags and fields
  2687. * to reflect having had <b>conn</b> attached to it, and return 0. Otherwise,
  2688. * if <b>dry_run</b> is true, then make no changes to <b>circ</b>, and return
  2689. * a bitfield of isolation flags that we would have to set in
  2690. * isolation_flags_mixed to add <b>conn</b> to <b>circ</b>, or -1 if
  2691. * <b>circ</b> has had no streams attached to it.
  2692. */
  2693. int
  2694. connection_edge_update_circuit_isolation(const entry_connection_t *conn,
  2695. origin_circuit_t *circ,
  2696. int dry_run)
  2697. {
  2698. const socks_request_t *sr = conn->socks_request;
  2699. if (! conn->original_dest_address) {
  2700. log_warn(LD_BUG, "Reached connection_update_circuit_isolation without "
  2701. "having set conn->original_dest_address");
  2702. ((entry_connection_t*)conn)->original_dest_address =
  2703. tor_strdup(conn->socks_request->address);
  2704. }
  2705. if (!circ->isolation_values_set) {
  2706. if (dry_run)
  2707. return -1;
  2708. circ->associated_isolated_stream_global_id =
  2709. ENTRY_TO_CONN(conn)->global_identifier;
  2710. circ->dest_port = conn->socks_request->port;
  2711. circ->dest_address = tor_strdup(conn->original_dest_address);
  2712. circ->client_proto_type = conn->socks_request->listener_type;
  2713. circ->client_proto_socksver = conn->socks_request->socks_version;
  2714. tor_addr_copy(&circ->client_addr, &ENTRY_TO_CONN(conn)->addr);
  2715. circ->session_group = conn->session_group;
  2716. circ->nym_epoch = conn->nym_epoch;
  2717. circ->socks_username = sr->username ?
  2718. tor_memdup(sr->username, sr->usernamelen) : NULL;
  2719. circ->socks_password = sr->password ?
  2720. tor_memdup(sr->password, sr->passwordlen) : NULL;
  2721. circ->socks_username_len = sr->usernamelen;
  2722. circ->socks_password_len = sr->passwordlen;
  2723. circ->isolation_values_set = 1;
  2724. return 0;
  2725. } else {
  2726. uint8_t mixed = 0;
  2727. if (conn->socks_request->port != circ->dest_port)
  2728. mixed |= ISO_DESTPORT;
  2729. if (strcasecmp(conn->original_dest_address, circ->dest_address))
  2730. mixed |= ISO_DESTADDR;
  2731. if (!memeq_opt(sr->username, sr->usernamelen,
  2732. circ->socks_username, circ->socks_username_len) ||
  2733. !memeq_opt(sr->password, sr->passwordlen,
  2734. circ->socks_password, circ->socks_password_len))
  2735. mixed |= ISO_SOCKSAUTH;
  2736. if ((conn->socks_request->listener_type != circ->client_proto_type ||
  2737. conn->socks_request->socks_version != circ->client_proto_socksver))
  2738. mixed |= ISO_CLIENTPROTO;
  2739. if (!tor_addr_eq(&ENTRY_TO_CONN(conn)->addr, &circ->client_addr))
  2740. mixed |= ISO_CLIENTADDR;
  2741. if (conn->session_group != circ->session_group)
  2742. mixed |= ISO_SESSIONGRP;
  2743. if (conn->nym_epoch != circ->nym_epoch)
  2744. mixed |= ISO_NYM_EPOCH;
  2745. if (dry_run)
  2746. return mixed;
  2747. if ((mixed & conn->isolation_flags) != 0) {
  2748. log_warn(LD_BUG, "Updating a circuit with seemingly incompatible "
  2749. "isolation flags.");
  2750. }
  2751. circ->isolation_flags_mixed |= mixed;
  2752. return 0;
  2753. }
  2754. }
  2755. /**
  2756. * Clear the isolation settings on <b>circ</b>.
  2757. *
  2758. * This only works on an open circuit that has never had a stream attached to
  2759. * it, and whose isolation settings are hypothetical. (We set hypothetical
  2760. * isolation settings on circuits as we're launching them, so that we
  2761. * know whether they can handle more streams or whether we need to launch
  2762. * even more circuits. Once the circuit is open, if it turns out that
  2763. * we no longer have any streams to attach to it, we clear the isolation flags
  2764. * and data so that other streams can have a chance.)
  2765. */
  2766. void
  2767. circuit_clear_isolation(origin_circuit_t *circ)
  2768. {
  2769. if (circ->isolation_any_streams_attached) {
  2770. log_warn(LD_BUG, "Tried to clear the isolation status of a dirty circuit");
  2771. return;
  2772. }
  2773. if (TO_CIRCUIT(circ)->state != CIRCUIT_STATE_OPEN) {
  2774. log_warn(LD_BUG, "Tried to clear the isolation status of a non-open "
  2775. "circuit");
  2776. return;
  2777. }
  2778. circ->isolation_values_set = 0;
  2779. circ->isolation_flags_mixed = 0;
  2780. circ->associated_isolated_stream_global_id = 0;
  2781. circ->client_proto_type = 0;
  2782. circ->client_proto_socksver = 0;
  2783. circ->dest_port = 0;
  2784. tor_addr_make_unspec(&circ->client_addr);
  2785. tor_free(circ->dest_address);
  2786. circ->session_group = -1;
  2787. circ->nym_epoch = 0;
  2788. if (circ->socks_username) {
  2789. memwipe(circ->socks_username, 0x11, circ->socks_username_len);
  2790. tor_free(circ->socks_username);
  2791. }
  2792. if (circ->socks_password) {
  2793. memwipe(circ->socks_password, 0x05, circ->socks_password_len);
  2794. tor_free(circ->socks_password);
  2795. }
  2796. circ->socks_username_len = circ->socks_password_len = 0;
  2797. }