connection_edge.c 106 KB

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