connection_edge.c 125 KB

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