connection_edge.c 132 KB

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