connection_edge.c 111 KB

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