connection_edge.c 133 KB

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