connection_edge.c 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2007, Roger Dingledine, Nick Mathewson. */
  4. /* See LICENSE for licensing information */
  5. /* $Id$ */
  6. const char connection_edge_c_id[] =
  7. "$Id$";
  8. /**
  9. * \file connection_edge.c
  10. * \brief Handle edge streams.
  11. **/
  12. #include "or.h"
  13. #ifdef HAVE_LINUX_NETFILTER_IPV4_H
  14. #include <linux/netfilter_ipv4.h>
  15. #define TRANS_NETFILTER
  16. #endif
  17. #if defined(HAVE_NET_IF_H) && defined(HAVE_NET_PFVAR_H)
  18. #include <net/if.h>
  19. #include <net/pfvar.h>
  20. #define TRANS_PF
  21. #endif
  22. /** List of exit_redirect_t for every configured RedirectExit. */
  23. static smartlist_t *redirect_exit_list = NULL;
  24. static int connection_ap_handshake_process_socks(edge_connection_t *conn);
  25. static int connection_ap_process_natd(edge_connection_t *conn);
  26. static int connection_exit_connect_dir(edge_connection_t *exitconn);
  27. /** An AP stream has failed/finished. If it hasn't already sent back
  28. * a socks reply, send one now (based on endreason). Also set
  29. * has_sent_end to 1, and mark the conn.
  30. */
  31. void
  32. _connection_mark_unattached_ap(edge_connection_t *conn, int endreason,
  33. int line, const char *file)
  34. {
  35. tor_assert(conn->_base.type == CONN_TYPE_AP);
  36. conn->_base.edge_has_sent_end = 1; /* no circ yet */
  37. if (conn->_base.marked_for_close) {
  38. /* This call will warn as appropriate. */
  39. _connection_mark_for_close(TO_CONN(conn), line, file);
  40. return;
  41. }
  42. if (!conn->socks_request->has_finished) {
  43. if (endreason & END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED)
  44. log_warn(LD_BUG,
  45. "stream (marked at %s:%d) sending two socks replies?",
  46. file, line);
  47. if (SOCKS_COMMAND_IS_CONNECT(conn->socks_request->command))
  48. connection_ap_handshake_socks_reply(conn, NULL, 0, endreason);
  49. else if (SOCKS_COMMAND_IS_RESOLVE(conn->socks_request->command))
  50. connection_ap_handshake_socks_resolved(conn,
  51. RESOLVED_TYPE_ERROR_TRANSIENT,
  52. 0, NULL, -1);
  53. else /* unknown or no handshake at all. send no response. */
  54. conn->socks_request->has_finished = 1;
  55. }
  56. _connection_mark_for_close(TO_CONN(conn), line, file);
  57. conn->_base.hold_open_until_flushed = 1;
  58. conn->end_reason = endreason;
  59. }
  60. /** There was an EOF. Send an end and mark the connection for close.
  61. */
  62. int
  63. connection_edge_reached_eof(edge_connection_t *conn)
  64. {
  65. if (buf_datalen(conn->_base.inbuf) &&
  66. connection_state_is_open(TO_CONN(conn))) {
  67. /* it still has stuff to process. don't let it die yet. */
  68. return 0;
  69. }
  70. log_info(LD_EDGE,"conn (fd %d) reached eof. Closing.", conn->_base.s);
  71. if (!conn->_base.marked_for_close) {
  72. /* only mark it if not already marked. it's possible to
  73. * get the 'end' right around when the client hangs up on us. */
  74. connection_edge_end(conn, END_STREAM_REASON_DONE);
  75. if (conn->socks_request) /* eof, so don't send a socks reply back */
  76. conn->socks_request->has_finished = 1;
  77. connection_mark_for_close(TO_CONN(conn));
  78. }
  79. return 0;
  80. }
  81. /** Handle new bytes on conn->inbuf based on state:
  82. * - If it's waiting for socks info, try to read another step of the
  83. * socks handshake out of conn->inbuf.
  84. * - If it's waiting for the original destination, fetch it.
  85. * - If it's open, then package more relay cells from the stream.
  86. * - Else, leave the bytes on inbuf alone for now.
  87. *
  88. * Mark and return -1 if there was an unexpected error with the conn,
  89. * else return 0.
  90. */
  91. int
  92. connection_edge_process_inbuf(edge_connection_t *conn, int package_partial)
  93. {
  94. tor_assert(conn);
  95. switch (conn->_base.state) {
  96. case AP_CONN_STATE_SOCKS_WAIT:
  97. if (connection_ap_handshake_process_socks(conn) < 0) {
  98. /* already marked */
  99. return -1;
  100. }
  101. return 0;
  102. case AP_CONN_STATE_NATD_WAIT:
  103. if (connection_ap_process_natd(conn) < 0) {
  104. /* already marked */
  105. return -1;
  106. }
  107. return 0;
  108. case AP_CONN_STATE_OPEN:
  109. case EXIT_CONN_STATE_OPEN:
  110. if (connection_edge_package_raw_inbuf(conn, package_partial) < 0) {
  111. /* (We already sent an end cell if possible) */
  112. connection_mark_for_close(TO_CONN(conn));
  113. return -1;
  114. }
  115. return 0;
  116. case EXIT_CONN_STATE_CONNECTING:
  117. case AP_CONN_STATE_RENDDESC_WAIT:
  118. case AP_CONN_STATE_CIRCUIT_WAIT:
  119. case AP_CONN_STATE_CONNECT_WAIT:
  120. case AP_CONN_STATE_RESOLVE_WAIT:
  121. case AP_CONN_STATE_CONTROLLER_WAIT:
  122. log_info(LD_EDGE,
  123. "data from edge while in '%s' state. Leaving it on buffer.",
  124. conn_state_to_string(conn->_base.type, conn->_base.state));
  125. return 0;
  126. }
  127. log_warn(LD_BUG,"Got unexpected state %d. Closing.",conn->_base.state);
  128. tor_fragile_assert();
  129. connection_edge_end(conn, END_STREAM_REASON_INTERNAL);
  130. connection_mark_for_close(TO_CONN(conn));
  131. return -1;
  132. }
  133. /** This edge needs to be closed, because its circuit has closed.
  134. * Mark it for close and return 0.
  135. */
  136. int
  137. connection_edge_destroy(uint16_t circ_id, edge_connection_t *conn)
  138. {
  139. if (!conn->_base.marked_for_close) {
  140. log_info(LD_EDGE,
  141. "CircID %d: At an edge. Marking connection for close.", circ_id);
  142. if (conn->_base.type == CONN_TYPE_AP) {
  143. connection_mark_unattached_ap(conn, END_STREAM_REASON_DESTROY);
  144. } else {
  145. /* closing the circuit, nothing to send an END to */
  146. conn->_base.edge_has_sent_end = 1;
  147. conn->end_reason = END_STREAM_REASON_DESTROY;
  148. conn->end_reason |= END_STREAM_REASON_FLAG_ALREADY_SENT_CLOSED;
  149. if (conn->_base.type == CONN_TYPE_AP)
  150. control_event_stream_status(conn, STREAM_EVENT_CLOSED,
  151. END_STREAM_REASON_DESTROY);
  152. connection_mark_for_close(TO_CONN(conn));
  153. conn->_base.hold_open_until_flushed = 1;
  154. }
  155. }
  156. conn->cpath_layer = NULL;
  157. conn->on_circuit = NULL;
  158. return 0;
  159. }
  160. /** Send a relay end cell from stream <b>conn</b> down conn's circuit. Set
  161. * the relay end cell's reason for closing as <b>reason</b>.
  162. *
  163. * Return -1 if this function has already been called on this conn,
  164. * else return 0.
  165. */
  166. int
  167. connection_edge_end(edge_connection_t *conn, char reason)
  168. {
  169. char payload[RELAY_PAYLOAD_SIZE];
  170. size_t payload_len=1;
  171. circuit_t *circ;
  172. if (conn->_base.edge_has_sent_end) {
  173. log_warn(LD_BUG,"(Harmless.) Calling connection_edge_end (reason %d) "
  174. "on an already ended stream?", reason);
  175. tor_fragile_assert();
  176. return -1;
  177. }
  178. if (conn->_base.marked_for_close) {
  179. log_warn(LD_BUG,
  180. "called on conn that's already marked for close at %s:%d.",
  181. conn->_base.marked_for_close_file, conn->_base.marked_for_close);
  182. return 0;
  183. }
  184. payload[0] = reason;
  185. if (reason == END_STREAM_REASON_EXITPOLICY &&
  186. !connection_edge_is_rendezvous_stream(conn)) {
  187. set_uint32(payload+1, htonl(conn->_base.addr));
  188. set_uint32(payload+5, htonl(dns_clip_ttl(conn->address_ttl)));
  189. payload_len += 8;
  190. }
  191. circ = circuit_get_by_edge_conn(conn);
  192. if (circ && !circ->marked_for_close) {
  193. log_debug(LD_EDGE,"Sending end on conn (fd %d).",conn->_base.s);
  194. connection_edge_send_command(conn, RELAY_COMMAND_END,
  195. payload, payload_len);
  196. } else {
  197. log_debug(LD_EDGE,"No circ to send end on conn (fd %d).",
  198. conn->_base.s);
  199. }
  200. conn->_base.edge_has_sent_end = 1;
  201. conn->end_reason = reason;
  202. return 0;
  203. }
  204. /** An error has just occured on an operation on an edge connection
  205. * <b>conn</b>. Extract the errno; convert it to an end reason, and send an
  206. * appropriate relay end cell to the other end of the connection's circuit.
  207. **/
  208. int
  209. connection_edge_end_errno(edge_connection_t *conn)
  210. {
  211. uint8_t reason;
  212. tor_assert(conn);
  213. reason = (uint8_t)errno_to_end_reason(tor_socket_errno(conn->_base.s));
  214. return connection_edge_end(conn, reason);
  215. }
  216. /** Connection <b>conn</b> has finished writing and has no bytes left on
  217. * its outbuf.
  218. *
  219. * If it's in state 'open', stop writing, consider responding with a
  220. * sendme, and return.
  221. * Otherwise, stop writing and return.
  222. *
  223. * If <b>conn</b> is broken, mark it for close and return -1, else
  224. * return 0.
  225. */
  226. int
  227. connection_edge_finished_flushing(edge_connection_t *conn)
  228. {
  229. tor_assert(conn);
  230. switch (conn->_base.state) {
  231. case AP_CONN_STATE_OPEN:
  232. case EXIT_CONN_STATE_OPEN:
  233. connection_stop_writing(TO_CONN(conn));
  234. connection_edge_consider_sending_sendme(conn);
  235. return 0;
  236. case AP_CONN_STATE_SOCKS_WAIT:
  237. case AP_CONN_STATE_NATD_WAIT:
  238. case AP_CONN_STATE_RENDDESC_WAIT:
  239. case AP_CONN_STATE_CIRCUIT_WAIT:
  240. case AP_CONN_STATE_CONNECT_WAIT:
  241. case AP_CONN_STATE_CONTROLLER_WAIT:
  242. connection_stop_writing(TO_CONN(conn));
  243. return 0;
  244. default:
  245. log_warn(LD_BUG, "Called in unexpected state %d.",conn->_base.state);
  246. tor_fragile_assert();
  247. return -1;
  248. }
  249. return 0;
  250. }
  251. /** Connected handler for exit connections: start writing pending
  252. * data, deliver 'CONNECTED' relay cells as appropriate, and check
  253. * any pending data that may have been received. */
  254. int
  255. connection_edge_finished_connecting(edge_connection_t *edge_conn)
  256. {
  257. char valbuf[INET_NTOA_BUF_LEN];
  258. connection_t *conn;
  259. struct in_addr in;
  260. tor_assert(edge_conn);
  261. tor_assert(edge_conn->_base.type == CONN_TYPE_EXIT);
  262. conn = TO_CONN(edge_conn);
  263. tor_assert(conn->state == EXIT_CONN_STATE_CONNECTING);
  264. in.s_addr = htonl(conn->addr);
  265. tor_inet_ntoa(&in,valbuf,sizeof(valbuf));
  266. log_info(LD_EXIT,"Exit connection to %s:%u (%s) established.",
  267. escaped_safe_str(conn->address),conn->port,safe_str(valbuf));
  268. conn->state = EXIT_CONN_STATE_OPEN;
  269. connection_watch_events(conn, EV_READ); /* stop writing, continue reading */
  270. if (connection_wants_to_flush(conn)) /* in case there are any queued relay
  271. * cells */
  272. connection_start_writing(conn);
  273. /* deliver a 'connected' relay cell back through the circuit. */
  274. if (connection_edge_is_rendezvous_stream(edge_conn)) {
  275. if (connection_edge_send_command(edge_conn,
  276. RELAY_COMMAND_CONNECTED, NULL, 0) < 0)
  277. return 0; /* circuit is closed, don't continue */
  278. } else {
  279. char connected_payload[8];
  280. set_uint32(connected_payload, htonl(conn->addr));
  281. set_uint32(connected_payload+4,
  282. htonl(dns_clip_ttl(edge_conn->address_ttl)));
  283. if (connection_edge_send_command(edge_conn,
  284. RELAY_COMMAND_CONNECTED,
  285. connected_payload, 8) < 0)
  286. return 0; /* circuit is closed, don't continue */
  287. }
  288. tor_assert(edge_conn->package_window > 0);
  289. /* in case the server has written anything */
  290. return connection_edge_process_inbuf(edge_conn, 1);
  291. }
  292. /** Define a schedule for how long to wait between retrying
  293. * application connections. Rather than waiting a fixed amount of
  294. * time between each retry, we wait 10 seconds each for the first
  295. * two tries, and 15 seconds for each retry after
  296. * that. Hopefully this will improve the expected user experience. */
  297. static int
  298. compute_retry_timeout(edge_connection_t *conn)
  299. {
  300. if (conn->num_socks_retries < 2) /* try 0 and try 1 */
  301. return 10;
  302. return 15;
  303. }
  304. /** Find all general-purpose AP streams waiting for a response that sent their
  305. * begin/resolve cell >=15 seconds ago. Detach from their current circuit, and
  306. * mark their current circuit as unsuitable for new streams. Then call
  307. * connection_ap_handshake_attach_circuit() to attach to a new circuit (if
  308. * available) or launch a new one.
  309. *
  310. * For rendezvous streams, simply give up after SocksTimeout seconds (with no
  311. * retry attempt).
  312. */
  313. void
  314. connection_ap_expire_beginning(void)
  315. {
  316. edge_connection_t *conn;
  317. circuit_t *circ;
  318. time_t now = time(NULL);
  319. or_options_t *options = get_options();
  320. int severity;
  321. int cutoff;
  322. int seconds_idle;
  323. smartlist_t *conns = get_connection_array();
  324. SMARTLIST_FOREACH(conns, connection_t *, c,
  325. {
  326. if (c->type != CONN_TYPE_AP)
  327. continue;
  328. conn = TO_EDGE_CONN(c);
  329. /* if it's an internal linked connection, don't yell its status. */
  330. severity = (!conn->_base.addr && !conn->_base.port)
  331. ? LOG_INFO : LOG_NOTICE;
  332. seconds_idle = now - conn->_base.timestamp_lastread;
  333. if (AP_CONN_STATE_IS_UNATTACHED(conn->_base.state)) {
  334. if (seconds_idle >= options->SocksTimeout) {
  335. log_fn(severity, LD_APP,
  336. "Tried for %d seconds to get a connection to %s:%d. "
  337. "Giving up. (%s)",
  338. seconds_idle, safe_str(conn->socks_request->address),
  339. conn->socks_request->port,
  340. conn_state_to_string(CONN_TYPE_AP, conn->_base.state));
  341. connection_mark_unattached_ap(conn, END_STREAM_REASON_TIMEOUT);
  342. }
  343. continue;
  344. }
  345. if (conn->_base.state == AP_CONN_STATE_OPEN)
  346. continue;
  347. /* We're in state connect_wait or resolve_wait now -- waiting for a
  348. * reply to our relay cell. See if we want to retry/give up. */
  349. cutoff = compute_retry_timeout(conn);
  350. if (seconds_idle < cutoff)
  351. continue;
  352. circ = circuit_get_by_edge_conn(conn);
  353. if (!circ) { /* it's vanished? */
  354. log_info(LD_APP,"Conn is waiting (address %s), but lost its circ.",
  355. safe_str(conn->socks_request->address));
  356. connection_mark_unattached_ap(conn, END_STREAM_REASON_TIMEOUT);
  357. continue;
  358. }
  359. if (circ->purpose == CIRCUIT_PURPOSE_C_REND_JOINED) {
  360. if (seconds_idle >= options->SocksTimeout) {
  361. log_fn(severity, LD_REND,
  362. "Rend stream is %d seconds late. Giving up on address"
  363. " '%s.onion'.",
  364. seconds_idle,
  365. safe_str(conn->socks_request->address));
  366. connection_edge_end(conn, END_STREAM_REASON_TIMEOUT);
  367. connection_mark_unattached_ap(conn, END_STREAM_REASON_TIMEOUT);
  368. }
  369. continue;
  370. }
  371. tor_assert(circ->purpose == CIRCUIT_PURPOSE_C_GENERAL);
  372. log_fn(cutoff < 15 ? LOG_INFO : severity, LD_APP,
  373. "We tried for %d seconds to connect to '%s' using exit '%s'."
  374. " Retrying on a new circuit.",
  375. seconds_idle, safe_str(conn->socks_request->address),
  376. conn->cpath_layer ?
  377. conn->cpath_layer->extend_info->nickname : "*unnamed*");
  378. /* send an end down the circuit */
  379. connection_edge_end(conn, END_STREAM_REASON_TIMEOUT);
  380. /* un-mark it as ending, since we're going to reuse it */
  381. conn->_base.edge_has_sent_end = 0;
  382. conn->end_reason = 0;
  383. /* kludge to make us not try this circuit again, yet to allow
  384. * current streams on it to survive if they can: make it
  385. * unattractive to use for new streams */
  386. tor_assert(circ->timestamp_dirty);
  387. circ->timestamp_dirty -= options->MaxCircuitDirtiness;
  388. /* give our stream another 'cutoff' seconds to try */
  389. conn->_base.timestamp_lastread += cutoff;
  390. if (conn->num_socks_retries < 250) /* avoid overflow */
  391. conn->num_socks_retries++;
  392. /* move it back into 'pending' state, and try to attach. */
  393. if (connection_ap_detach_retriable(conn, TO_ORIGIN_CIRCUIT(circ),
  394. END_STREAM_REASON_TIMEOUT)<0) {
  395. connection_mark_unattached_ap(conn, END_STREAM_REASON_CANT_ATTACH);
  396. }
  397. }); /* end foreach */
  398. }
  399. /** Tell any AP streams that are waiting for a new circuit to try again,
  400. * either attaching to an available circ or launching a new one.
  401. */
  402. void
  403. connection_ap_attach_pending(void)
  404. {
  405. edge_connection_t *edge_conn;
  406. smartlist_t *conns = get_connection_array();
  407. SMARTLIST_FOREACH(conns, connection_t *, conn,
  408. {
  409. if (conn->marked_for_close ||
  410. conn->type != CONN_TYPE_AP ||
  411. conn->state != AP_CONN_STATE_CIRCUIT_WAIT)
  412. continue;
  413. edge_conn = TO_EDGE_CONN(conn);
  414. if (connection_ap_handshake_attach_circuit(edge_conn) < 0) {
  415. connection_mark_unattached_ap(edge_conn, END_STREAM_REASON_CANT_ATTACH);
  416. }
  417. });
  418. }
  419. /** A circuit failed to finish on its last hop <b>info</b>. If there
  420. * are any streams waiting with this exit node in mind, but they
  421. * don't absolutely require it, make them give up on it.
  422. */
  423. void
  424. circuit_discard_optional_exit_enclaves(extend_info_t *info)
  425. {
  426. edge_connection_t *edge_conn;
  427. routerinfo_t *r1, *r2;
  428. smartlist_t *conns = get_connection_array();
  429. SMARTLIST_FOREACH(conns, connection_t *, conn,
  430. {
  431. if (conn->marked_for_close ||
  432. conn->type != CONN_TYPE_AP ||
  433. !conn->chosen_exit_optional)
  434. continue;
  435. edge_conn = TO_EDGE_CONN(conn);
  436. r1 = router_get_by_nickname(edge_conn->chosen_exit_name, 0);
  437. r2 = router_get_by_nickname(info->nickname, 0);
  438. if (r1 && r2 && r1==r2) {
  439. tor_assert(edge_conn->socks_request);
  440. log_info(LD_APP, "Giving up on enclave exit '%s' for destination %s.",
  441. safe_str(edge_conn->chosen_exit_name),
  442. escaped_safe_str(edge_conn->socks_request->address));
  443. conn->chosen_exit_optional = 0;
  444. tor_free(edge_conn->chosen_exit_name); /* clears it */
  445. }
  446. });
  447. }
  448. /** The AP connection <b>conn</b> has just failed while attaching or
  449. * sending a BEGIN or resolving on <b>circ</b>, but another circuit
  450. * might work. Detach the circuit, and either reattach it, launch a
  451. * new circuit, tell the controller, or give up as a appropriate.
  452. *
  453. * Returns -1 on err, 1 on success, 0 on not-yet-sure.
  454. */
  455. int
  456. connection_ap_detach_retriable(edge_connection_t *conn, origin_circuit_t *circ,
  457. int reason)
  458. {
  459. control_event_stream_status(conn, STREAM_EVENT_FAILED_RETRIABLE, reason);
  460. conn->_base.timestamp_lastread = time(NULL);
  461. if (! get_options()->LeaveStreamsUnattached) {
  462. conn->_base.state = AP_CONN_STATE_CIRCUIT_WAIT;
  463. circuit_detach_stream(TO_CIRCUIT(circ),conn);
  464. return connection_ap_handshake_attach_circuit(conn);
  465. } else {
  466. conn->_base.state = AP_CONN_STATE_CONTROLLER_WAIT;
  467. circuit_detach_stream(TO_CIRCUIT(circ),conn);
  468. return 0;
  469. }
  470. }
  471. /** A client-side struct to remember requests to rewrite addresses
  472. * to new addresses. These structs are stored in the hash table
  473. * "addressmap" below.
  474. *
  475. * There are 5 ways to set an address mapping:
  476. * - A MapAddress command from the controller [permanent]
  477. * - An AddressMap directive in the torrc [permanent]
  478. * - When a TrackHostExits torrc directive is triggered [temporary]
  479. * - When a dns resolve succeeds [temporary]
  480. * - When a dns resolve fails [temporary]
  481. *
  482. * When an addressmap request is made but one is already registered,
  483. * the new one is replaced only if the currently registered one has
  484. * no "new_address" (that is, it's in the process of dns resolve),
  485. * or if the new one is permanent (expires==0 or 1).
  486. *
  487. * (We overload the 'expires' field, using "0" for mappings set via
  488. * the configuration file, "1" for mappings set from the control
  489. * interface, and other values for DNS mappings that can expire.)
  490. */
  491. typedef struct {
  492. char *new_address;
  493. time_t expires;
  494. int num_resolve_failures;
  495. } addressmap_entry_t;
  496. /** Entry for mapping addresses to which virtual address we mapped them to. */
  497. typedef struct {
  498. char *ipv4_address;
  499. char *hostname_address;
  500. } virtaddress_entry_t;
  501. /** A hash table to store client-side address rewrite instructions. */
  502. static strmap_t *addressmap=NULL;
  503. /**
  504. * Table mapping addresses to which virtual address, if any, we
  505. * assigned them to.
  506. *
  507. * We maintain the following invariant: if [A,B] is in
  508. * virtaddress_reversemap, then B must be a virtual address, and [A,B]
  509. * must be in addressmap. We do not require that the converse hold:
  510. * if it fails, then we could end up mapping two virtual addresses to
  511. * the same address, which is no disaster.
  512. **/
  513. static strmap_t *virtaddress_reversemap=NULL;
  514. /** Initialize addressmap. */
  515. void
  516. addressmap_init(void)
  517. {
  518. addressmap = strmap_new();
  519. virtaddress_reversemap = strmap_new();
  520. }
  521. /** Free the memory associated with the addressmap entry <b>_ent</b>. */
  522. static void
  523. addressmap_ent_free(void *_ent)
  524. {
  525. addressmap_entry_t *ent = _ent;
  526. tor_free(ent->new_address);
  527. tor_free(ent);
  528. }
  529. /** Free storage held by a virtaddress_entry_t* entry in <b>ent</b>. */
  530. static void
  531. addressmap_virtaddress_ent_free(void *_ent)
  532. {
  533. virtaddress_entry_t *ent = _ent;
  534. tor_free(ent->ipv4_address);
  535. tor_free(ent->hostname_address);
  536. tor_free(ent);
  537. }
  538. /** Free storage held by a virtaddress_entry_t* entry in <b>ent</b>. */
  539. static void
  540. addressmap_virtaddress_remove(const char *address, addressmap_entry_t *ent)
  541. {
  542. if (ent && ent->new_address &&
  543. address_is_in_virtual_range(ent->new_address)) {
  544. virtaddress_entry_t *ve =
  545. strmap_get(virtaddress_reversemap, ent->new_address);
  546. /*log_fn(LOG_NOTICE,"remove reverse mapping for %s",ent->new_address);*/
  547. if (ve) {
  548. if (!strcmp(address, ve->ipv4_address))
  549. tor_free(ve->ipv4_address);
  550. if (!strcmp(address, ve->hostname_address))
  551. tor_free(ve->hostname_address);
  552. if (!ve->ipv4_address && !ve->hostname_address) {
  553. tor_free(ve);
  554. strmap_remove(virtaddress_reversemap, ent->new_address);
  555. }
  556. }
  557. }
  558. }
  559. /** Remove <b>ent</b> (which must be mapped to by <b>address</b>) from the
  560. * client address maps. */
  561. static void
  562. addressmap_ent_remove(const char *address, addressmap_entry_t *ent)
  563. {
  564. addressmap_virtaddress_remove(address, ent);
  565. addressmap_ent_free(ent);
  566. }
  567. /** Remove all entries from the addressmap that were set via the
  568. * configuration file or the command line. */
  569. void
  570. addressmap_clear_configured(void)
  571. {
  572. addressmap_get_mappings(NULL, 0, 0);
  573. }
  574. /** Remove all entries from the addressmap that are set to expire, ever. */
  575. void
  576. addressmap_clear_transient(void)
  577. {
  578. addressmap_get_mappings(NULL, 2, TIME_MAX);
  579. }
  580. /** Clean out entries from the addressmap cache that were
  581. * added long enough ago that they are no longer valid.
  582. */
  583. void
  584. addressmap_clean(time_t now)
  585. {
  586. addressmap_get_mappings(NULL, 2, now);
  587. }
  588. /** Free all the elements in the addressmap, and free the addressmap
  589. * itself. */
  590. void
  591. addressmap_free_all(void)
  592. {
  593. if (addressmap) {
  594. strmap_free(addressmap, addressmap_ent_free);
  595. addressmap = NULL;
  596. }
  597. if (virtaddress_reversemap) {
  598. strmap_free(virtaddress_reversemap, addressmap_virtaddress_ent_free);
  599. virtaddress_reversemap = NULL;
  600. }
  601. }
  602. /** Look at address, and rewrite it until it doesn't want any
  603. * more rewrites; but don't get into an infinite loop.
  604. * Don't write more than maxlen chars into address. Return true if the
  605. * address changed; false otherwise.
  606. */
  607. int
  608. addressmap_rewrite(char *address, size_t maxlen)
  609. {
  610. addressmap_entry_t *ent;
  611. int rewrites;
  612. char *cp;
  613. for (rewrites = 0; rewrites < 16; rewrites++) {
  614. ent = strmap_get(addressmap, address);
  615. if (!ent || !ent->new_address)
  616. return (rewrites > 0); /* done, no rewrite needed */
  617. cp = tor_strdup(escaped_safe_str(ent->new_address));
  618. log_info(LD_APP, "Addressmap: rewriting %s to %s",
  619. escaped_safe_str(address), cp);
  620. tor_free(cp);
  621. strlcpy(address, ent->new_address, maxlen);
  622. }
  623. log_warn(LD_CONFIG,
  624. "Loop detected: we've rewritten %s 16 times! Using it as-is.",
  625. escaped_safe_str(address));
  626. /* it's fine to rewrite a rewrite, but don't loop forever */
  627. return 1;
  628. }
  629. /** If we have a cached reverse DNS entry for the address stored in the
  630. * <b>maxlen</b>-byte buffer <b>address</b> (typically, a dotted quad) then
  631. * rewrite to the cached value and return 1. Otherwise return 0. */
  632. static int
  633. addressmap_rewrite_reverse(char *address, size_t maxlen)
  634. {
  635. size_t len = maxlen + 16;
  636. char *s = tor_malloc(len), *cp;
  637. addressmap_entry_t *ent;
  638. int r = 0;
  639. tor_snprintf(s, len, "REVERSE[%s]", address);
  640. ent = strmap_get(addressmap, s);
  641. if (ent) {
  642. cp = tor_strdup(escaped_safe_str(ent->new_address));
  643. log_info(LD_APP, "Rewrote reverse lookup %s -> %s",
  644. escaped_safe_str(s), cp);
  645. tor_free(cp);
  646. strlcpy(address, ent->new_address, maxlen);
  647. r = 1;
  648. }
  649. tor_free(s);
  650. return r;
  651. }
  652. /** Return 1 if <b>address</b> is already registered, else return 0 */
  653. int
  654. addressmap_have_mapping(const char *address)
  655. {
  656. return strmap_get_lc(addressmap, address) ? 1 : 0;
  657. }
  658. /** Register a request to map <b>address</b> to <b>new_address</b>,
  659. * which will expire on <b>expires</b> (or 0 if never expires from
  660. * config file, 1 if never expires from controller, 2 if never expires
  661. * (virtual address mapping) from the controller.)
  662. *
  663. * <b>new_address</b> should be a newly dup'ed string, which we'll use or
  664. * free as appropriate. We will leave address alone.
  665. *
  666. * If <b>new_address</b> is NULL, or equal to <b>address</b>, remove
  667. * any mappings that exist from <b>address</b>.
  668. */
  669. void
  670. addressmap_register(const char *address, char *new_address, time_t expires)
  671. {
  672. addressmap_entry_t *ent;
  673. ent = strmap_get(addressmap, address);
  674. if (!new_address || !strcasecmp(address,new_address)) {
  675. /* Remove the mapping, if any. */
  676. tor_free(new_address);
  677. if (ent) {
  678. addressmap_ent_remove(address,ent);
  679. strmap_remove(addressmap, address);
  680. }
  681. return;
  682. }
  683. if (!ent) { /* make a new one and register it */
  684. ent = tor_malloc_zero(sizeof(addressmap_entry_t));
  685. strmap_set(addressmap, address, ent);
  686. } else if (ent->new_address) { /* we need to clean up the old mapping. */
  687. if (expires > 1) {
  688. log_info(LD_APP,"Temporary addressmap ('%s' to '%s') not performed, "
  689. "since it's already mapped to '%s'",
  690. safe_str(address), safe_str(new_address), safe_str(ent->new_address));
  691. tor_free(new_address);
  692. return;
  693. }
  694. if (address_is_in_virtual_range(ent->new_address) &&
  695. expires != 2) {
  696. /* XXX This isn't the perfect test; we want to avoid removing
  697. * mappings set from the control interface _as virtual mapping */
  698. addressmap_virtaddress_remove(address, ent);
  699. }
  700. tor_free(ent->new_address);
  701. } /* else { we have an in-progress resolve with no mapping. } */
  702. ent->new_address = new_address;
  703. ent->expires = expires==2 ? 1 : expires;
  704. ent->num_resolve_failures = 0;
  705. log_info(LD_CONFIG, "Addressmap: (re)mapped '%s' to '%s'",
  706. safe_str(address), safe_str(ent->new_address));
  707. control_event_address_mapped(address, ent->new_address, expires);
  708. }
  709. /** An attempt to resolve <b>address</b> failed at some OR.
  710. * Increment the number of resolve failures we have on record
  711. * for it, and then return that number.
  712. */
  713. int
  714. client_dns_incr_failures(const char *address)
  715. {
  716. addressmap_entry_t *ent = strmap_get(addressmap, address);
  717. if (!ent) {
  718. ent = tor_malloc_zero(sizeof(addressmap_entry_t));
  719. ent->expires = time(NULL) + MAX_DNS_ENTRY_AGE;
  720. strmap_set(addressmap,address,ent);
  721. }
  722. ++ent->num_resolve_failures;
  723. log_info(LD_APP, "Address %s now has %d resolve failures.",
  724. safe_str(address), ent->num_resolve_failures);
  725. return ent->num_resolve_failures;
  726. }
  727. /** If <b>address</b> is in the client dns addressmap, reset
  728. * the number of resolve failures we have on record for it.
  729. * This is used when we fail a stream because it won't resolve:
  730. * otherwise future attempts on that address will only try once.
  731. */
  732. void
  733. client_dns_clear_failures(const char *address)
  734. {
  735. addressmap_entry_t *ent = strmap_get(addressmap, address);
  736. if (ent)
  737. ent->num_resolve_failures = 0;
  738. }
  739. /** Record the fact that <b>address</b> resolved to <b>name</b>.
  740. * We can now use this in subsequent streams via addressmap_rewrite()
  741. * so we can more correctly choose an exit that will allow <b>address</b>.
  742. *
  743. * If <b>exitname</b> is defined, then append the addresses with
  744. * ".exitname.exit" before registering the mapping.
  745. *
  746. * If <b>ttl</b> is nonnegative, the mapping will be valid for
  747. * <b>ttl</b>seconds; otherwise, we use the default.
  748. */
  749. static void
  750. client_dns_set_addressmap_impl(const char *address, const char *name,
  751. const char *exitname,
  752. int ttl)
  753. {
  754. /* <address>.<hex or nickname>.exit\0 or just <address>\0 */
  755. char extendedaddress[MAX_SOCKS_ADDR_LEN+MAX_VERBOSE_NICKNAME_LEN+10];
  756. /* 123.123.123.123.<hex or nickname>.exit\0 or just 123.123.123.123\0 */
  757. char extendedval[INET_NTOA_BUF_LEN+MAX_VERBOSE_NICKNAME_LEN+10];
  758. tor_assert(address);
  759. tor_assert(name);
  760. if (ttl<0)
  761. ttl = DEFAULT_DNS_TTL;
  762. else
  763. ttl = dns_clip_ttl(ttl);
  764. if (exitname) {
  765. /* XXXX fails to ever get attempts to get an exit address of
  766. * google.com.digest[=~]nickname.exit; we need a syntax for this that
  767. * won't make strict RFC952-compliant applications (like us) barf. */
  768. tor_snprintf(extendedaddress, sizeof(extendedaddress),
  769. "%s.%s.exit", address, exitname);
  770. tor_snprintf(extendedval, sizeof(extendedval),
  771. "%s.%s.exit", name, exitname);
  772. } else {
  773. tor_snprintf(extendedaddress, sizeof(extendedaddress),
  774. "%s", address);
  775. tor_snprintf(extendedval, sizeof(extendedval),
  776. "%s", name);
  777. }
  778. addressmap_register(extendedaddress, tor_strdup(extendedval),
  779. time(NULL) + ttl);
  780. }
  781. /** Record the fact that <b>address</b> resolved to <b>val</b>.
  782. * We can now use this in subsequent streams via addressmap_rewrite()
  783. * so we can more correctly choose an exit that will allow <b>address</b>.
  784. *
  785. * If <b>exitname</b> is defined, then append the addresses with
  786. * ".exitname.exit" before registering the mapping.
  787. *
  788. * If <b>ttl</b> is nonnegative, the mapping will be valid for
  789. * <b>ttl</b>seconds; otherwise, we use the default.
  790. */
  791. void
  792. client_dns_set_addressmap(const char *address, uint32_t val,
  793. const char *exitname,
  794. int ttl)
  795. {
  796. struct in_addr in;
  797. char valbuf[INET_NTOA_BUF_LEN];
  798. tor_assert(address);
  799. if (tor_inet_aton(address, &in))
  800. return; /* If address was an IP address already, don't add a mapping. */
  801. in.s_addr = htonl(val);
  802. tor_inet_ntoa(&in,valbuf,sizeof(valbuf));
  803. client_dns_set_addressmap_impl(address, valbuf, exitname, ttl);
  804. }
  805. /** Add a cache entry noting that <b>address</b> (ordinarily a dotted quad)
  806. * resolved via a RESOLVE_PTR request to the hostname <b>v</b>.
  807. *
  808. * If <b>exitname</b> is defined, then append the addresses with
  809. * ".exitname.exit" before registering the mapping.
  810. *
  811. * If <b>ttl</b> is nonnegative, the mapping will be valid for
  812. * <b>ttl</b>seconds; otherwise, we use the default.
  813. */
  814. static void
  815. client_dns_set_reverse_addressmap(const char *address, const char *v,
  816. const char *exitname,
  817. int ttl)
  818. {
  819. size_t len = strlen(address) + 16;
  820. char *s = tor_malloc(len);
  821. tor_snprintf(s, len, "REVERSE[%s]", address);
  822. client_dns_set_addressmap_impl(s, v, exitname, ttl);
  823. tor_free(s);
  824. }
  825. /* By default, we hand out 127.192.0.1 through 127.254.254.254.
  826. * These addresses should map to localhost, so even if the
  827. * application accidentally tried to connect to them directly (not
  828. * via Tor), it wouldn't get too far astray.
  829. *
  830. * These options are configured by parse_virtual_addr_network().
  831. */
  832. static uint32_t virtual_addr_network = 0x7fc00000u;
  833. static uint32_t virtual_addr_netmask = 0xffc00000u;
  834. static int virtual_addr_netmask_bits = 10;
  835. static uint32_t next_virtual_addr = 0x7fc00000u;
  836. /** Read a netmask of the form 127.192.0.0/10 from "val", and check whether
  837. * it's a valid set of virtual addresses to hand out in response to MAPADDRESS
  838. * requests. Return 0 on success; set *msg (if provided) to a newly allocated
  839. * string and return -1 on failure. If validate_only is false, sets the
  840. * actual virtual address range to the parsed value. */
  841. int
  842. parse_virtual_addr_network(const char *val, int validate_only,
  843. char **msg)
  844. {
  845. uint32_t addr, mask;
  846. uint16_t port_min, port_max;
  847. int bits;
  848. if (parse_addr_and_port_range(val, &addr, &mask, &port_min, &port_max)) {
  849. if (msg) *msg = tor_strdup("Error parsing VirtualAddressNetwork");
  850. return -1;
  851. }
  852. if (port_min != 1 || port_max != 65535) {
  853. if (msg) *msg = tor_strdup("Can't specify ports on VirtualAddressNetwork");
  854. return -1;
  855. }
  856. bits = addr_mask_get_bits(mask);
  857. if (bits < 0) {
  858. if (msg) *msg = tor_strdup("VirtualAddressNetwork must have a mask that "
  859. "can be expressed as a prefix");
  860. return -1;
  861. }
  862. if (bits > 16) {
  863. if (msg) *msg = tor_strdup("VirtualAddressNetwork expects a /16 "
  864. "network or larger");
  865. return -1;
  866. }
  867. if (validate_only)
  868. return 0;
  869. virtual_addr_network = addr & mask;
  870. virtual_addr_netmask = mask;
  871. virtual_addr_netmask_bits = bits;
  872. if ((next_virtual_addr & mask) != addr)
  873. next_virtual_addr = addr;
  874. return 0;
  875. }
  876. /**
  877. * Return true iff <b>addr</b> is likely to have been returned by
  878. * client_dns_get_unused_address.
  879. **/
  880. int
  881. address_is_in_virtual_range(const char *address)
  882. {
  883. struct in_addr in;
  884. tor_assert(address);
  885. if (!strcasecmpend(address, ".virtual")) {
  886. return 1;
  887. } else if (tor_inet_aton(address, &in)) {
  888. uint32_t addr = ntohl(in.s_addr);
  889. if ((addr & virtual_addr_netmask) == virtual_addr_network)
  890. return 1;
  891. }
  892. return 0;
  893. }
  894. /** Return a newly allocated string holding an address of <b>type</b>
  895. * (one of RESOLVED_TYPE_{IPV4|HOSTNAME}) that has not yet been mapped,
  896. * and that is very unlikely to be the address of any real host.
  897. */
  898. static char *
  899. addressmap_get_virtual_address(int type)
  900. {
  901. char buf[64];
  902. struct in_addr in;
  903. if (type == RESOLVED_TYPE_HOSTNAME) {
  904. char rand[10];
  905. do {
  906. crypto_rand(rand, sizeof(rand));
  907. base32_encode(buf,sizeof(buf),rand,sizeof(rand));
  908. strlcat(buf, ".virtual", sizeof(buf));
  909. } while (strmap_get(addressmap, buf));
  910. return tor_strdup(buf);
  911. } else if (type == RESOLVED_TYPE_IPV4) {
  912. // This is an imperfect estimate of how many addresses are available, but
  913. // that's ok.
  914. uint32_t available = 1u << (32-virtual_addr_netmask_bits);
  915. while (available) {
  916. /* Don't hand out any .0 or .255 address. */
  917. while ((next_virtual_addr & 0xff) == 0 ||
  918. (next_virtual_addr & 0xff) == 0xff) {
  919. ++next_virtual_addr;
  920. }
  921. in.s_addr = htonl(next_virtual_addr);
  922. tor_inet_ntoa(&in, buf, sizeof(buf));
  923. if (!strmap_get(addressmap, buf))
  924. break;
  925. ++next_virtual_addr;
  926. --available;
  927. log_info(LD_CONFIG, "%d addrs available", (int)available);
  928. if (! --available) {
  929. log_warn(LD_CONFIG, "Ran out of virtual addresses!");
  930. return NULL;
  931. }
  932. if ((next_virtual_addr & virtual_addr_netmask) != virtual_addr_network)
  933. next_virtual_addr = virtual_addr_network;
  934. }
  935. return tor_strdup(buf);
  936. } else {
  937. log_warn(LD_BUG, "Called with unsupported address type (%d)", type);
  938. return NULL;
  939. }
  940. }
  941. /** A controller has requested that we map some address of type
  942. * <b>type</b> to the address <b>new_address</b>. Choose an address
  943. * that is unlikely to be used, and map it, and return it in a newly
  944. * allocated string. If another address of the same type is already
  945. * mapped to <b>new_address</b>, try to return a copy of that address.
  946. *
  947. * The string in <b>new_address</b> may be freed, or inserted into a map
  948. * as appropriate.
  949. **/
  950. const char *
  951. addressmap_register_virtual_address(int type, char *new_address)
  952. {
  953. char **addrp;
  954. virtaddress_entry_t *vent;
  955. tor_assert(new_address);
  956. tor_assert(addressmap);
  957. tor_assert(virtaddress_reversemap);
  958. vent = strmap_get(virtaddress_reversemap, new_address);
  959. if (!vent) {
  960. vent = tor_malloc_zero(sizeof(virtaddress_entry_t));
  961. strmap_set(virtaddress_reversemap, new_address, vent);
  962. }
  963. addrp = (type == RESOLVED_TYPE_IPV4) ?
  964. &vent->ipv4_address : &vent->hostname_address;
  965. if (*addrp) {
  966. addressmap_entry_t *ent = strmap_get(addressmap, *addrp);
  967. if (ent && ent->new_address &&
  968. !strcasecmp(new_address, ent->new_address)) {
  969. tor_free(new_address);
  970. return tor_strdup(*addrp);
  971. } else
  972. log_warn(LD_BUG,
  973. "Internal confusion: I thought that '%s' was mapped to by "
  974. "'%s', but '%s' really maps to '%s'. This is a harmless bug.",
  975. safe_str(new_address), safe_str(*addrp), safe_str(*addrp),
  976. ent?safe_str(ent->new_address):"(nothing)");
  977. }
  978. tor_free(*addrp);
  979. *addrp = addressmap_get_virtual_address(type);
  980. log_info(LD_APP, "Registering map from %s to %s", *addrp, new_address);
  981. addressmap_register(*addrp, new_address, 2);
  982. #if 0
  983. {
  984. /* Try to catch possible bugs */
  985. addressmap_entry_t *ent;
  986. ent = strmap_get(addressmap, *addrp);
  987. tor_assert(ent);
  988. tor_assert(!strcasecmp(ent->new_address,new_address));
  989. vent = strmap_get(virtaddress_reversemap, new_address);
  990. tor_assert(vent);
  991. tor_assert(!strcasecmp(*addrp,
  992. (type == RESOLVED_TYPE_IPV4) ?
  993. vent->ipv4_address : vent->hostname_address));
  994. log_info(LD_APP, "Map from %s to %s okay.",
  995. safe_str(*addrp),safe_str(new_address));
  996. }
  997. #endif
  998. return *addrp;
  999. }
  1000. /** Return 1 if <b>address</b> has funny characters in it like colons. Return
  1001. * 0 if it's fine, or if we're configured to allow it anyway. <b>client</b>
  1002. * should be true if we're using this address as a client; false if we're
  1003. * using it as a server.
  1004. */
  1005. int
  1006. address_is_invalid_destination(const char *address, int client)
  1007. {
  1008. if (client) {
  1009. if (get_options()->AllowNonRFC953Hostnames)
  1010. return 0;
  1011. } else {
  1012. if (get_options()->ServerDNSAllowNonRFC953Hostnames)
  1013. return 0;
  1014. }
  1015. while (*address) {
  1016. if (TOR_ISALNUM(*address) ||
  1017. *address == '-' ||
  1018. *address == '.' ||
  1019. *address == '_') /* Underscore is not allowed, but Windows does it
  1020. * sometimes, just to thumb its nose at the IETF. */
  1021. ++address;
  1022. else
  1023. return 1;
  1024. }
  1025. return 0;
  1026. }
  1027. /** Iterate over all address mappings which have expiry times between
  1028. * min_expires and max_expires, inclusive. If sl is provided, add an
  1029. * "old-addr new-addr" string to sl for each mapping. If sl is NULL,
  1030. * remove the mappings.
  1031. */
  1032. void
  1033. addressmap_get_mappings(smartlist_t *sl, time_t min_expires,
  1034. time_t max_expires)
  1035. {
  1036. strmap_iter_t *iter;
  1037. const char *key;
  1038. void *_val;
  1039. addressmap_entry_t *val;
  1040. if (!addressmap)
  1041. addressmap_init();
  1042. for (iter = strmap_iter_init(addressmap); !strmap_iter_done(iter); ) {
  1043. strmap_iter_get(iter, &key, &_val);
  1044. val = _val;
  1045. if (val->expires >= min_expires && val->expires <= max_expires) {
  1046. if (!sl) {
  1047. iter = strmap_iter_next_rmv(addressmap,iter);
  1048. addressmap_ent_remove(key, val);
  1049. continue;
  1050. } else if (val->new_address) {
  1051. size_t len = strlen(key)+strlen(val->new_address)+2;
  1052. char *line = tor_malloc(len);
  1053. tor_snprintf(line, len, "%s %s", key, val->new_address);
  1054. smartlist_add(sl, line);
  1055. }
  1056. }
  1057. iter = strmap_iter_next(addressmap,iter);
  1058. }
  1059. }
  1060. /** Connection <b>conn</b> just finished its socks handshake, or the
  1061. * controller asked us to take care of it. If <b>circ</b> is defined,
  1062. * then that's where we'll want to attach it. Otherwise we have to
  1063. * figure it out ourselves.
  1064. *
  1065. * First, parse whether it's a .exit address, remap it, and so on. Then
  1066. * if it's for a general circuit, try to attach it to a circuit (or launch
  1067. * one as needed), else if it's for a rendezvous circuit, fetch a
  1068. * rendezvous descriptor first (or attach/launch a circuit if the
  1069. * rendezvous descriptor is already here and fresh enough).
  1070. *
  1071. * The stream will exit from the hop
  1072. * indicated by <b>cpath</b>, or from the last hop in circ's cpath if
  1073. * <b>cpath</b> is NULL.
  1074. */
  1075. int
  1076. connection_ap_handshake_rewrite_and_attach(edge_connection_t *conn,
  1077. origin_circuit_t *circ,
  1078. crypt_path_t *cpath)
  1079. {
  1080. socks_request_t *socks = conn->socks_request;
  1081. hostname_type_t addresstype;
  1082. or_options_t *options = get_options();
  1083. struct in_addr addr_tmp;
  1084. int automap = 0;
  1085. char orig_address[MAX_SOCKS_ADDR_LEN];
  1086. tor_strlower(socks->address); /* normalize it */
  1087. strlcpy(orig_address, socks->address, sizeof(orig_address));
  1088. log_debug(LD_APP,"Client asked for %s:%d",
  1089. safe_str(socks->address),
  1090. socks->port);
  1091. if (socks->command == SOCKS_COMMAND_RESOLVE &&
  1092. !tor_inet_aton(socks->address, &addr_tmp) &&
  1093. options->AutomapHostsOnResolve && options->AutomapHostsSuffixes) {
  1094. SMARTLIST_FOREACH(options->AutomapHostsSuffixes, const char *, cp,
  1095. if (!strcasecmpend(socks->address, cp)) {
  1096. automap = 1;
  1097. break;
  1098. });
  1099. if (automap) {
  1100. const char *new_addr;
  1101. new_addr = addressmap_register_virtual_address(
  1102. RESOLVED_TYPE_IPV4, tor_strdup(socks->address));
  1103. tor_assert(new_addr);
  1104. log_info(LD_APP, "Automapping %s to %s",
  1105. escaped_safe_str(socks->address), safe_str(new_addr));
  1106. strlcpy(socks->address, new_addr, sizeof(socks->address));
  1107. }
  1108. }
  1109. if (socks->command == SOCKS_COMMAND_RESOLVE_PTR) {
  1110. if (addressmap_rewrite_reverse(socks->address, sizeof(socks->address))) {
  1111. char *result = tor_strdup(socks->address);
  1112. /* remember _what_ is supposed to have been resolved. */
  1113. strlcpy(socks->address, orig_address, sizeof(socks->address));
  1114. connection_ap_handshake_socks_resolved(conn, RESOLVED_TYPE_HOSTNAME,
  1115. strlen(result), result, -1);
  1116. connection_mark_unattached_ap(conn,
  1117. END_STREAM_REASON_DONE |
  1118. END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED);
  1119. return 0;
  1120. }
  1121. } else if (!automap) {
  1122. /* For address map controls, remap the address. */
  1123. if (addressmap_rewrite(socks->address, sizeof(socks->address))) {
  1124. control_event_stream_status(conn, STREAM_EVENT_REMAP,
  1125. REMAP_STREAM_SOURCE_CACHE);
  1126. }
  1127. }
  1128. if (!automap && address_is_in_virtual_range(socks->address)) {
  1129. /* This address was probably handed out by client_dns_get_unmapped_address,
  1130. * but the mapping was discarded for some reason. We *don't* want to send
  1131. * the address through Tor; that's likely to fail, and may leak
  1132. * information.
  1133. */
  1134. log_warn(LD_APP,"Missing mapping for virtual address '%s'. Refusing.",
  1135. socks->address); /* don't safe_str() this yet. */
  1136. connection_mark_unattached_ap(conn, END_STREAM_REASON_INTERNAL);
  1137. return -1;
  1138. }
  1139. /* Parse the address provided by SOCKS. Modify it in-place if it
  1140. * specifies a hidden-service (.onion) or particular exit node (.exit).
  1141. */
  1142. addresstype = parse_extended_hostname(socks->address);
  1143. if (addresstype == BAD_HOSTNAME) {
  1144. log_warn(LD_APP, "Invalid hostname %s; rejecting", socks->address);
  1145. control_event_client_status(LOG_WARN, "SOCKS_BAD_HOSTNAME HOSTNAME=%s",
  1146. escaped(socks->address));
  1147. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  1148. return -1;
  1149. }
  1150. if (addresstype == EXIT_HOSTNAME) {
  1151. /* foo.exit -- modify conn->chosen_exit_node to specify the exit
  1152. * node, and conn->address to hold only the address portion.*/
  1153. char *s = strrchr(socks->address,'.');
  1154. tor_assert(!automap);
  1155. if (s) {
  1156. if (s[1] != '\0') {
  1157. conn->chosen_exit_name = tor_strdup(s+1);
  1158. *s = 0;
  1159. } else {
  1160. log_warn(LD_APP,"Malformed exit address '%s.exit'. Refusing.",
  1161. safe_str(socks->address));
  1162. control_event_client_status(LOG_WARN, "SOCKS_BAD_HOSTNAME HOSTNAME=%s",
  1163. escaped(socks->address));
  1164. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  1165. return -1;
  1166. }
  1167. } else {
  1168. routerinfo_t *r;
  1169. conn->chosen_exit_name = tor_strdup(socks->address);
  1170. r = router_get_by_nickname(conn->chosen_exit_name, 1);
  1171. *socks->address = 0;
  1172. if (r) {
  1173. strlcpy(socks->address, r->address, sizeof(socks->address));
  1174. } else {
  1175. log_warn(LD_APP,
  1176. "Unrecognized server in exit address '%s.exit'. Refusing.",
  1177. safe_str(socks->address));
  1178. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  1179. return -1;
  1180. }
  1181. }
  1182. }
  1183. if (addresstype != ONION_HOSTNAME) {
  1184. /* not a hidden-service request (i.e. normal or .exit) */
  1185. if (address_is_invalid_destination(socks->address, 1)) {
  1186. control_event_client_status(LOG_WARN, "SOCKS_BAD_HOSTNAME HOSTNAME=%s",
  1187. escaped(socks->address));
  1188. log_warn(LD_APP,
  1189. "Destination '%s' seems to be an invalid hostname. Failing.",
  1190. safe_str(socks->address));
  1191. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  1192. return -1;
  1193. }
  1194. if (socks->command == SOCKS_COMMAND_RESOLVE) {
  1195. uint32_t answer;
  1196. struct in_addr in;
  1197. /* Reply to resolves immediately if we can. */
  1198. if (strlen(socks->address) > RELAY_PAYLOAD_SIZE) {
  1199. log_warn(LD_APP,"Address to be resolved is too large. Failing.");
  1200. control_event_client_status(LOG_WARN, "SOCKS_BAD_HOSTNAME HOSTNAME=%s",
  1201. escaped(socks->address));
  1202. connection_ap_handshake_socks_resolved(conn,
  1203. RESOLVED_TYPE_ERROR_TRANSIENT,
  1204. 0,NULL,-1);
  1205. connection_mark_unattached_ap(conn,
  1206. END_STREAM_REASON_SOCKSPROTOCOL |
  1207. END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED);
  1208. return -1;
  1209. }
  1210. if (tor_inet_aton(socks->address, &in)) { /* see if it's an IP already */
  1211. /* leave it in network order */
  1212. answer = in.s_addr;
  1213. /* remember _what_ is supposed to have been resolved. */
  1214. strlcpy(socks->address, orig_address, sizeof(socks->address));
  1215. connection_ap_handshake_socks_resolved(conn,RESOLVED_TYPE_IPV4,4,
  1216. (char*)&answer,-1);
  1217. connection_mark_unattached_ap(conn,
  1218. END_STREAM_REASON_DONE |
  1219. END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED);
  1220. return 0;
  1221. }
  1222. tor_assert(!automap);
  1223. rep_hist_note_used_resolve(time(NULL)); /* help predict this next time */
  1224. } else if (socks->command == SOCKS_COMMAND_CONNECT) {
  1225. tor_assert(!automap);
  1226. if (socks->port == 0) {
  1227. log_notice(LD_APP,"Application asked to connect to port 0. Refusing.");
  1228. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  1229. return -1;
  1230. }
  1231. if (!conn->chosen_exit_name && !circ) {
  1232. /* see if we can find a suitable enclave exit */
  1233. routerinfo_t *r =
  1234. router_find_exact_exit_enclave(socks->address, socks->port);
  1235. if (r) {
  1236. log_info(LD_APP,
  1237. "Redirecting address %s to exit at enclave router %s",
  1238. safe_str(socks->address), r->nickname);
  1239. /* use the hex digest, not nickname, in case there are two
  1240. routers with this nickname */
  1241. conn->chosen_exit_name =
  1242. tor_strdup(hex_str(r->cache_info.identity_digest, DIGEST_LEN));
  1243. conn->_base.chosen_exit_optional = 1;
  1244. }
  1245. }
  1246. /* help predict this next time */
  1247. rep_hist_note_used_port(socks->port, time(NULL));
  1248. } else if (socks->command == SOCKS_COMMAND_RESOLVE_PTR) {
  1249. rep_hist_note_used_resolve(time(NULL)); /* help predict this next time */
  1250. } else if (socks->command == SOCKS_COMMAND_CONNECT_DIR) {
  1251. ; /* nothing */
  1252. } else {
  1253. tor_fragile_assert();
  1254. }
  1255. conn->_base.state = AP_CONN_STATE_CIRCUIT_WAIT;
  1256. if ((circ && connection_ap_handshake_attach_chosen_circuit(
  1257. conn, circ, cpath) < 0) ||
  1258. (!circ &&
  1259. connection_ap_handshake_attach_circuit(conn) < 0)) {
  1260. connection_mark_unattached_ap(conn, END_STREAM_REASON_CANT_ATTACH);
  1261. return -1;
  1262. }
  1263. return 0;
  1264. } else {
  1265. /* it's a hidden-service request */
  1266. rend_cache_entry_t *entry;
  1267. int r;
  1268. tor_assert(!automap);
  1269. if (SOCKS_COMMAND_IS_RESOLVE(socks->command)) {
  1270. /* if it's a resolve request, fail it right now, rather than
  1271. * building all the circuits and then realizing it won't work. */
  1272. log_warn(LD_APP,
  1273. "Resolve requests to hidden services not allowed. Failing.");
  1274. connection_ap_handshake_socks_resolved(conn,RESOLVED_TYPE_ERROR,
  1275. 0,NULL,-1);
  1276. connection_mark_unattached_ap(conn,
  1277. END_STREAM_REASON_SOCKSPROTOCOL |
  1278. END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED);
  1279. return -1;
  1280. }
  1281. if (circ) {
  1282. log_warn(LD_CONTROL, "Attachstream to a circuit is not "
  1283. "supported for .onion addresses currently. Failing.");
  1284. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  1285. return -1;
  1286. }
  1287. strlcpy(conn->rend_query, socks->address, sizeof(conn->rend_query));
  1288. log_info(LD_REND,"Got a hidden service request for ID '%s'",
  1289. safe_str(conn->rend_query));
  1290. /* see if we already have it cached */
  1291. r = rend_cache_lookup_entry(conn->rend_query, -1, &entry);
  1292. if (r<0) {
  1293. log_warn(LD_BUG,"Invalid service name '%s'",
  1294. safe_str(conn->rend_query));
  1295. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  1296. return -1;
  1297. }
  1298. if (r==0) {
  1299. conn->_base.state = AP_CONN_STATE_RENDDESC_WAIT;
  1300. log_info(LD_REND, "Unknown descriptor %s. Fetching.",
  1301. safe_str(conn->rend_query));
  1302. rend_client_refetch_renddesc(conn->rend_query);
  1303. } else { /* r > 0 */
  1304. /** How long after we receive a hidden service descriptor do we consider
  1305. * it valid? */
  1306. #define NUM_SECONDS_BEFORE_HS_REFETCH (60*15)
  1307. if (time(NULL) - entry->received < NUM_SECONDS_BEFORE_HS_REFETCH) {
  1308. conn->_base.state = AP_CONN_STATE_CIRCUIT_WAIT;
  1309. log_info(LD_REND, "Descriptor is here and fresh enough. Great.");
  1310. if (connection_ap_handshake_attach_circuit(conn) < 0) {
  1311. connection_mark_unattached_ap(conn, END_STREAM_REASON_CANT_ATTACH);
  1312. return -1;
  1313. }
  1314. } else {
  1315. conn->_base.state = AP_CONN_STATE_RENDDESC_WAIT;
  1316. log_info(LD_REND, "Stale descriptor %s. Refetching.",
  1317. safe_str(conn->rend_query));
  1318. rend_client_refetch_renddesc(conn->rend_query);
  1319. }
  1320. }
  1321. return 0;
  1322. }
  1323. return 0; /* unreached but keeps the compiler happy */
  1324. }
  1325. #ifdef TRANS_PF
  1326. static int pf_socket = -1;
  1327. static int
  1328. get_pf_socket(void)
  1329. {
  1330. int pf;
  1331. /* Ideally, this should be opened before dropping privs. */
  1332. if (pf_socket >= 0)
  1333. return pf_socket;
  1334. #ifdef OPENBSD
  1335. /* only works on OpenBSD */
  1336. pf = open("/dev/pf", O_RDONLY);
  1337. #else
  1338. /* works on NetBSD and FreeBSD */
  1339. pf = open("/dev/pf", O_RDWR);
  1340. #endif
  1341. if (pf < 0) {
  1342. log_warn(LD_NET, "open(\"/dev/pf\") failed: %s", strerror(errno));
  1343. return -1;
  1344. }
  1345. pf_socket = pf;
  1346. return pf_socket;
  1347. }
  1348. #endif
  1349. /** Fetch the original destination address and port from a
  1350. * system-specific interface and put them into a
  1351. * socks_request_t as if they came from a socks request.
  1352. *
  1353. * Return -1 if an error prevents fetching the destination,
  1354. * else return 0.
  1355. */
  1356. static int
  1357. connection_ap_get_original_destination(edge_connection_t *conn,
  1358. socks_request_t *req)
  1359. {
  1360. #ifdef TRANS_NETFILTER
  1361. /* Linux 2.4+ */
  1362. struct sockaddr_in orig_dst;
  1363. socklen_t orig_dst_len = sizeof(orig_dst);
  1364. char tmpbuf[INET_NTOA_BUF_LEN];
  1365. if (getsockopt(conn->_base.s, SOL_IP, SO_ORIGINAL_DST,
  1366. (struct sockaddr*)&orig_dst, &orig_dst_len) < 0) {
  1367. int e = tor_socket_errno(conn->_base.s);
  1368. log_warn(LD_NET, "getsockopt() failed: %s", tor_socket_strerror(e));
  1369. return -1;
  1370. }
  1371. tor_inet_ntoa(&orig_dst.sin_addr, tmpbuf, sizeof(tmpbuf));
  1372. strlcpy(req->address, tmpbuf, sizeof(req->address));
  1373. req->port = ntohs(orig_dst.sin_port);
  1374. return 0;
  1375. #elif defined(TRANS_PF)
  1376. struct sockaddr_in proxy_addr;
  1377. socklen_t proxy_addr_len = sizeof(proxy_addr);
  1378. char tmpbuf[INET_NTOA_BUF_LEN];
  1379. struct pfioc_natlook pnl;
  1380. int pf = -1;
  1381. if (getsockname(conn->_base.s, (struct sockaddr*)&proxy_addr,
  1382. &proxy_addr_len) < 0) {
  1383. int e = tor_socket_errno(conn->_base.s);
  1384. log_warn(LD_NET, "getsockname() to determine transocks destination "
  1385. "failed: %s", tor_socket_strerror(e));
  1386. return -1;
  1387. }
  1388. memset(&pnl, 0, sizeof(pnl));
  1389. pnl.af = AF_INET;
  1390. pnl.proto = IPPROTO_TCP;
  1391. pnl.direction = PF_OUT;
  1392. pnl.saddr.v4.s_addr = htonl(conn->_base.addr);
  1393. pnl.sport = htons(conn->_base.port);
  1394. pnl.daddr.v4.s_addr = proxy_addr.sin_addr.s_addr;
  1395. pnl.dport = proxy_addr.sin_port;
  1396. pf = get_pf_socket();
  1397. if (pf<0)
  1398. return -1;
  1399. if (ioctl(pf, DIOCNATLOOK, &pnl) < 0) {
  1400. log_warn(LD_NET, "ioctl(DIOCNATLOOK) failed: %s", strerror(errno));
  1401. return -1;
  1402. }
  1403. tor_inet_ntoa(&pnl.rdaddr.v4, tmpbuf, sizeof(tmpbuf));
  1404. strlcpy(req->address, tmpbuf, sizeof(req->address));
  1405. req->port = ntohs(pnl.rdport);
  1406. return 0;
  1407. #else
  1408. (void)conn;
  1409. (void)req;
  1410. log_warn(LD_BUG, "Called connection_ap_get_original_destination, but no "
  1411. "transparent proxy method was configured.");
  1412. return -1;
  1413. #endif
  1414. }
  1415. /** connection_edge_process_inbuf() found a conn in state
  1416. * socks_wait. See if conn->inbuf has the right bytes to proceed with
  1417. * the socks handshake.
  1418. *
  1419. * If the handshake is complete, send it to
  1420. * connection_ap_handshake_rewrite_and_attach().
  1421. *
  1422. * Return -1 if an unexpected error with conn occurs (and mark it for close),
  1423. * else return 0.
  1424. */
  1425. static int
  1426. connection_ap_handshake_process_socks(edge_connection_t *conn)
  1427. {
  1428. socks_request_t *socks;
  1429. int sockshere;
  1430. or_options_t *options = get_options();
  1431. tor_assert(conn);
  1432. tor_assert(conn->_base.type == CONN_TYPE_AP);
  1433. tor_assert(conn->_base.state == AP_CONN_STATE_SOCKS_WAIT);
  1434. tor_assert(conn->socks_request);
  1435. socks = conn->socks_request;
  1436. log_debug(LD_APP,"entered.");
  1437. sockshere = fetch_from_buf_socks(conn->_base.inbuf, socks,
  1438. options->TestSocks, options->SafeSocks);
  1439. if (sockshere == 0) {
  1440. if (socks->replylen) {
  1441. connection_write_to_buf(socks->reply, socks->replylen, TO_CONN(conn));
  1442. /* zero it out so we can do another round of negotiation */
  1443. socks->replylen = 0;
  1444. } else {
  1445. log_debug(LD_APP,"socks handshake not all here yet.");
  1446. }
  1447. return 0;
  1448. } else if (sockshere == -1) {
  1449. if (socks->replylen) { /* we should send reply back */
  1450. log_debug(LD_APP,"reply is already set for us. Using it.");
  1451. connection_ap_handshake_socks_reply(conn, socks->reply, socks->replylen,
  1452. END_STREAM_REASON_SOCKSPROTOCOL);
  1453. } else {
  1454. log_warn(LD_APP,"Fetching socks handshake failed. Closing.");
  1455. connection_ap_handshake_socks_reply(conn, NULL, 0,
  1456. END_STREAM_REASON_SOCKSPROTOCOL);
  1457. }
  1458. connection_mark_unattached_ap(conn,
  1459. END_STREAM_REASON_SOCKSPROTOCOL |
  1460. END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED);
  1461. return -1;
  1462. } /* else socks handshake is done, continue processing */
  1463. if (hostname_is_noconnect_address(socks->address))
  1464. {
  1465. control_event_stream_status(conn, STREAM_EVENT_NEW, 0);
  1466. control_event_stream_status(conn, STREAM_EVENT_CLOSED, 0);
  1467. connection_mark_unattached_ap(conn, END_STREAM_REASON_DONE);
  1468. return -1;
  1469. }
  1470. if (SOCKS_COMMAND_IS_CONNECT(socks->command))
  1471. control_event_stream_status(conn, STREAM_EVENT_NEW, 0);
  1472. else
  1473. control_event_stream_status(conn, STREAM_EVENT_NEW_RESOLVE, 0);
  1474. if (options->LeaveStreamsUnattached) {
  1475. conn->_base.state = AP_CONN_STATE_CONTROLLER_WAIT;
  1476. return 0;
  1477. }
  1478. return connection_ap_handshake_rewrite_and_attach(conn, NULL, NULL);
  1479. }
  1480. /** connection_init_accepted_conn() found a new trans AP conn.
  1481. * Get the original destination and send it to
  1482. * connection_ap_handshake_rewrite_and_attach().
  1483. *
  1484. * Return -1 if an unexpected error with conn (and it should be marked
  1485. * for close), else return 0.
  1486. */
  1487. int
  1488. connection_ap_process_transparent(edge_connection_t *conn)
  1489. {
  1490. socks_request_t *socks;
  1491. or_options_t *options = get_options();
  1492. tor_assert(conn);
  1493. tor_assert(conn->_base.type == CONN_TYPE_AP);
  1494. tor_assert(conn->socks_request);
  1495. socks = conn->socks_request;
  1496. /* pretend that a socks handshake completed so we don't try to
  1497. * send a socks reply down a transparent conn */
  1498. socks->command = SOCKS_COMMAND_CONNECT;
  1499. socks->has_finished = 1;
  1500. log_debug(LD_APP,"entered.");
  1501. if (connection_ap_get_original_destination(conn, socks) < 0) {
  1502. log_warn(LD_APP,"Fetching original destination failed. Closing.");
  1503. connection_mark_unattached_ap(conn,
  1504. END_STREAM_REASON_CANT_FETCH_ORIG_DEST);
  1505. return -1;
  1506. }
  1507. /* we have the original destination */
  1508. control_event_stream_status(conn, STREAM_EVENT_NEW, 0);
  1509. if (options->LeaveStreamsUnattached) {
  1510. conn->_base.state = AP_CONN_STATE_CONTROLLER_WAIT;
  1511. return 0;
  1512. }
  1513. return connection_ap_handshake_rewrite_and_attach(conn, NULL, NULL);
  1514. }
  1515. /** connection_edge_process_inbuf() found a conn in state natd_wait. See if
  1516. * conn-\>inbuf has the right bytes to proceed. See FreeBSD's libalias(3) and
  1517. * ProxyEncodeTcpStream() in src/lib/libalias/alias_proxy.c for the encoding
  1518. * form of the original destination.
  1519. *
  1520. * If the original destination is complete, send it to
  1521. * connection_ap_handshake_rewrite_and_attach().
  1522. *
  1523. * Return -1 if an unexpected error with conn (and it should be marked
  1524. * for close), else return 0.
  1525. */
  1526. static int
  1527. connection_ap_process_natd(edge_connection_t *conn)
  1528. {
  1529. char tmp_buf[36], *tbuf, *daddr;
  1530. size_t tlen = 30;
  1531. int err, port_ok;
  1532. socks_request_t *socks;
  1533. or_options_t *options = get_options();
  1534. tor_assert(conn);
  1535. tor_assert(conn->_base.type == CONN_TYPE_AP);
  1536. tor_assert(conn->_base.state == AP_CONN_STATE_NATD_WAIT);
  1537. tor_assert(conn->socks_request);
  1538. socks = conn->socks_request;
  1539. log_debug(LD_APP,"entered.");
  1540. /* look for LF-terminated "[DEST ip_addr port]"
  1541. * where ip_addr is a dotted-quad and port is in string form */
  1542. err = fetch_from_buf_line_lf(conn->_base.inbuf, tmp_buf, &tlen);
  1543. if (err == 0)
  1544. return 0;
  1545. if (err < 0) {
  1546. log_warn(LD_APP,"Natd handshake failed (DEST too long). Closing");
  1547. connection_mark_unattached_ap(conn, END_STREAM_REASON_INVALID_NATD_DEST);
  1548. return -1;
  1549. }
  1550. if (strcmpstart(tmp_buf, "[DEST ")) {
  1551. log_warn(LD_APP,"Natd handshake was ill-formed; closing. The client "
  1552. "said: %s",
  1553. escaped(tmp_buf));
  1554. connection_mark_unattached_ap(conn, END_STREAM_REASON_INVALID_NATD_DEST);
  1555. return -1;
  1556. }
  1557. daddr = tbuf = &tmp_buf[0] + 6; /* after end of "[DEST " */
  1558. while (*tbuf != '\0' && *tbuf != ' ')
  1559. tbuf++;
  1560. *tbuf = '\0';
  1561. tbuf++;
  1562. /* pretend that a socks handshake completed so we don't try to
  1563. * send a socks reply down a natd conn */
  1564. strlcpy(socks->address, daddr, sizeof(socks->address));
  1565. socks->port = (uint16_t)
  1566. tor_parse_long(tbuf, 10, 1, 65535, &port_ok, &daddr);
  1567. if (!port_ok) {
  1568. log_warn(LD_APP,"Natd handshake failed; port %s is ill-formed or out "
  1569. "of range.", escaped(tbuf));
  1570. connection_mark_unattached_ap(conn, END_STREAM_REASON_INVALID_NATD_DEST);
  1571. return -1;
  1572. }
  1573. socks->command = SOCKS_COMMAND_CONNECT;
  1574. socks->has_finished = 1;
  1575. control_event_stream_status(conn, STREAM_EVENT_NEW, 0);
  1576. if (options->LeaveStreamsUnattached) {
  1577. conn->_base.state = AP_CONN_STATE_CONTROLLER_WAIT;
  1578. return 0;
  1579. }
  1580. conn->_base.state = AP_CONN_STATE_CIRCUIT_WAIT;
  1581. return connection_ap_handshake_rewrite_and_attach(conn, NULL, NULL);
  1582. }
  1583. /** Iterate over the two bytes of stream_id until we get one that is not
  1584. * already in use; return it. Return 0 if can't get a unique stream_id.
  1585. */
  1586. static uint16_t
  1587. get_unique_stream_id_by_circ(origin_circuit_t *circ)
  1588. {
  1589. edge_connection_t *tmpconn;
  1590. uint16_t test_stream_id;
  1591. uint32_t attempts=0;
  1592. again:
  1593. test_stream_id = circ->next_stream_id++;
  1594. if (++attempts > 1<<16) {
  1595. /* Make sure we don't loop forever if all stream_id's are used. */
  1596. log_warn(LD_APP,"No unused stream IDs. Failing.");
  1597. return 0;
  1598. }
  1599. if (test_stream_id == 0)
  1600. goto again;
  1601. for (tmpconn = circ->p_streams; tmpconn; tmpconn=tmpconn->next_stream)
  1602. if (tmpconn->stream_id == test_stream_id)
  1603. goto again;
  1604. return test_stream_id;
  1605. }
  1606. /** Write a relay begin cell, using destaddr and destport from ap_conn's
  1607. * socks_request field, and send it down circ.
  1608. *
  1609. * If ap_conn is broken, mark it for close and return -1. Else return 0.
  1610. */
  1611. int
  1612. connection_ap_handshake_send_begin(edge_connection_t *ap_conn)
  1613. {
  1614. char payload[CELL_PAYLOAD_SIZE];
  1615. int payload_len;
  1616. int begin_type;
  1617. origin_circuit_t *circ;
  1618. tor_assert(ap_conn->on_circuit);
  1619. circ = TO_ORIGIN_CIRCUIT(ap_conn->on_circuit);
  1620. tor_assert(ap_conn->_base.type == CONN_TYPE_AP);
  1621. tor_assert(ap_conn->_base.state == AP_CONN_STATE_CIRCUIT_WAIT);
  1622. tor_assert(ap_conn->socks_request);
  1623. tor_assert(SOCKS_COMMAND_IS_CONNECT(ap_conn->socks_request->command));
  1624. ap_conn->stream_id = get_unique_stream_id_by_circ(circ);
  1625. if (ap_conn->stream_id==0) {
  1626. connection_mark_unattached_ap(ap_conn, END_STREAM_REASON_INTERNAL);
  1627. circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_RESOURCELIMIT);
  1628. return -1;
  1629. }
  1630. tor_snprintf(payload,RELAY_PAYLOAD_SIZE, "%s:%d",
  1631. (circ->_base.purpose == CIRCUIT_PURPOSE_C_GENERAL) ?
  1632. ap_conn->socks_request->address : "",
  1633. ap_conn->socks_request->port);
  1634. payload_len = strlen(payload)+1;
  1635. log_debug(LD_APP,
  1636. "Sending relay cell to begin stream %d.", ap_conn->stream_id);
  1637. begin_type = ap_conn->socks_request->command == SOCKS_COMMAND_CONNECT ?
  1638. RELAY_COMMAND_BEGIN : RELAY_COMMAND_BEGIN_DIR;
  1639. if (begin_type == RELAY_COMMAND_BEGIN) {
  1640. tor_assert(circ->build_state->onehop_tunnel == 0);
  1641. }
  1642. if (connection_edge_send_command(ap_conn, begin_type,
  1643. begin_type == RELAY_COMMAND_BEGIN ? payload : NULL,
  1644. begin_type == RELAY_COMMAND_BEGIN ? payload_len : 0) < 0)
  1645. return -1; /* circuit is closed, don't continue */
  1646. ap_conn->package_window = STREAMWINDOW_START;
  1647. ap_conn->deliver_window = STREAMWINDOW_START;
  1648. ap_conn->_base.state = AP_CONN_STATE_CONNECT_WAIT;
  1649. log_info(LD_APP,"Address/port sent, ap socket %d, n_circ_id %d",
  1650. ap_conn->_base.s, circ->_base.n_circ_id);
  1651. control_event_stream_status(ap_conn, STREAM_EVENT_SENT_CONNECT, 0);
  1652. return 0;
  1653. }
  1654. /** Write a relay resolve cell, using destaddr and destport from ap_conn's
  1655. * socks_request field, and send it down circ.
  1656. *
  1657. * If ap_conn is broken, mark it for close and return -1. Else return 0.
  1658. */
  1659. int
  1660. connection_ap_handshake_send_resolve(edge_connection_t *ap_conn)
  1661. {
  1662. int payload_len, command;
  1663. const char *string_addr;
  1664. char inaddr_buf[32];
  1665. origin_circuit_t *circ;
  1666. tor_assert(ap_conn->on_circuit);
  1667. circ = TO_ORIGIN_CIRCUIT(ap_conn->on_circuit);
  1668. tor_assert(ap_conn->_base.type == CONN_TYPE_AP);
  1669. tor_assert(ap_conn->_base.state == AP_CONN_STATE_CIRCUIT_WAIT);
  1670. tor_assert(ap_conn->socks_request);
  1671. tor_assert(circ->_base.purpose == CIRCUIT_PURPOSE_C_GENERAL);
  1672. command = ap_conn->socks_request->command;
  1673. tor_assert(SOCKS_COMMAND_IS_RESOLVE(command));
  1674. ap_conn->stream_id = get_unique_stream_id_by_circ(circ);
  1675. if (ap_conn->stream_id==0) {
  1676. connection_mark_unattached_ap(ap_conn, END_STREAM_REASON_INTERNAL);
  1677. circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_RESOURCELIMIT);
  1678. return -1;
  1679. }
  1680. if (command == SOCKS_COMMAND_RESOLVE) {
  1681. string_addr = ap_conn->socks_request->address;
  1682. payload_len = strlen(string_addr)+1;
  1683. tor_assert(payload_len <= RELAY_PAYLOAD_SIZE);
  1684. } else {
  1685. struct in_addr in;
  1686. uint32_t a;
  1687. size_t len = strlen(ap_conn->socks_request->address);
  1688. char c = 0;
  1689. /* XXXX020 This logic is a little ugly: we check for an in-addr.arpa ending
  1690. * on the address. If we have one, the address is already in the right
  1691. * order, so we'll leave it alone later. Otherwise, we reverse it and
  1692. * turn it into an in-addr.arpa address. */
  1693. if (!strcasecmpend(ap_conn->socks_request->address, ".in-addr.arpa")) {
  1694. /* Temporarily truncate the address, so we can give it to inet_aton. */
  1695. c = ap_conn->socks_request->address[len-13];
  1696. ap_conn->socks_request->address[len-13] = '\0';
  1697. }
  1698. if (tor_inet_aton(ap_conn->socks_request->address, &in) == 0) {
  1699. connection_mark_unattached_ap(ap_conn, END_STREAM_REASON_INTERNAL);
  1700. return -1;
  1701. }
  1702. if (c) {
  1703. /* this path happens on DNS. Can we unify? XXXX020 */
  1704. ap_conn->socks_request->address[len-13] = c;
  1705. strlcpy(inaddr_buf, ap_conn->socks_request->address, sizeof(inaddr_buf));
  1706. } else {
  1707. /* this path happens on tor-resolve. Can we unify? XXXX020 */
  1708. a = ntohl(in.s_addr);
  1709. tor_snprintf(inaddr_buf, sizeof(inaddr_buf), "%d.%d.%d.%d.in-addr.arpa",
  1710. (int)(uint8_t)((a )&0xff),
  1711. (int)(uint8_t)((a>>8 )&0xff),
  1712. (int)(uint8_t)((a>>16)&0xff),
  1713. (int)(uint8_t)((a>>24)&0xff));
  1714. }
  1715. string_addr = inaddr_buf;
  1716. payload_len = strlen(inaddr_buf)+1;
  1717. tor_assert(payload_len <= RELAY_PAYLOAD_SIZE);
  1718. }
  1719. log_debug(LD_APP,
  1720. "Sending relay cell to begin stream %d.", ap_conn->stream_id);
  1721. if (connection_edge_send_command(ap_conn,
  1722. RELAY_COMMAND_RESOLVE,
  1723. string_addr, payload_len) < 0)
  1724. return -1; /* circuit is closed, don't continue */
  1725. ap_conn->_base.state = AP_CONN_STATE_RESOLVE_WAIT;
  1726. log_info(LD_APP,"Address sent for resolve, ap socket %d, n_circ_id %d",
  1727. ap_conn->_base.s, circ->_base.n_circ_id);
  1728. control_event_stream_status(ap_conn, STREAM_EVENT_SENT_RESOLVE, 0);
  1729. return 0;
  1730. }
  1731. /** Make an AP connection_t, make a new linked connection pair, and attach
  1732. * one side to the conn, connection_add it, initialize it to circuit_wait,
  1733. * and call connection_ap_handshake_attach_circuit(conn) on it.
  1734. *
  1735. * Return the other end of the linked connection pair, or -1 if error.
  1736. *
  1737. * DOCDOC start_reading
  1738. */
  1739. edge_connection_t *
  1740. connection_ap_make_link(char *address, uint16_t port,
  1741. const char *digest, int command)
  1742. {
  1743. edge_connection_t *conn;
  1744. log_info(LD_APP,"Making internal anonymized tunnel to %s:%d ...",
  1745. safe_str(address),port);
  1746. conn = TO_EDGE_CONN(connection_new(CONN_TYPE_AP, AF_INET));
  1747. conn->_base.linked = 1; /* so that we can add it safely below. */
  1748. /* populate conn->socks_request */
  1749. /* leave version at zero, so the socks_reply is empty */
  1750. conn->socks_request->socks_version = 0;
  1751. conn->socks_request->has_finished = 0; /* waiting for 'connected' */
  1752. strlcpy(conn->socks_request->address, address,
  1753. sizeof(conn->socks_request->address));
  1754. conn->socks_request->port = port;
  1755. conn->socks_request->command = command;
  1756. if (command == SOCKS_COMMAND_CONNECT_DIR) {
  1757. conn->chosen_exit_name = tor_malloc(HEX_DIGEST_LEN+2);
  1758. conn->chosen_exit_name[0] = '$';
  1759. base16_encode(conn->chosen_exit_name+1,HEX_DIGEST_LEN+1,
  1760. digest, DIGEST_LEN);
  1761. }
  1762. conn->_base.address = tor_strdup("(local link)");
  1763. conn->_base.addr = 0;
  1764. conn->_base.port = 0;
  1765. if (connection_add(TO_CONN(conn)) < 0) { /* no space, forget it */
  1766. connection_free(TO_CONN(conn));
  1767. return NULL;
  1768. }
  1769. conn->_base.state = AP_CONN_STATE_CIRCUIT_WAIT;
  1770. /* attaching to a dirty circuit is fine */
  1771. if (connection_ap_handshake_attach_circuit(conn) < 0) {
  1772. connection_mark_unattached_ap(conn, END_STREAM_REASON_CANT_ATTACH);
  1773. return NULL;
  1774. }
  1775. log_info(LD_APP,"... application connection created and linked.");
  1776. return conn;
  1777. }
  1778. /** Send an answer to an AP connection that has requested a DNS lookup
  1779. * via SOCKS. The type should be one of RESOLVED_TYPE_(IPV4|IPV6|HOSTNAME) or
  1780. * -1 for unreachable; the answer should be in the format specified
  1781. * in the socks extensions document.
  1782. **/
  1783. void
  1784. connection_ap_handshake_socks_resolved(edge_connection_t *conn,
  1785. int answer_type,
  1786. size_t answer_len,
  1787. const char *answer,
  1788. int ttl)
  1789. {
  1790. char buf[384];
  1791. size_t replylen;
  1792. if (ttl >= 0) {
  1793. if (answer_type == RESOLVED_TYPE_IPV4 && answer_len == 4) {
  1794. uint32_t a = ntohl(get_uint32(answer));
  1795. if (a)
  1796. client_dns_set_addressmap(conn->socks_request->address, a,
  1797. conn->chosen_exit_name, ttl);
  1798. } else if (answer_type == RESOLVED_TYPE_HOSTNAME && answer_len < 256) {
  1799. char *cp = tor_strndup(answer, answer_len);
  1800. client_dns_set_reverse_addressmap(conn->socks_request->address,
  1801. cp,
  1802. conn->chosen_exit_name, ttl);
  1803. tor_free(cp);
  1804. }
  1805. }
  1806. if (conn->dns_server_request) {
  1807. /* We had a request on our DNS port: answer it. */
  1808. dnsserv_resolved(conn, answer_type, answer_len, answer, ttl);
  1809. conn->socks_request->has_finished = 1;
  1810. return;
  1811. }
  1812. if (conn->socks_request->socks_version == 4) {
  1813. buf[0] = 0x00; /* version */
  1814. if (answer_type == RESOLVED_TYPE_IPV4 && answer_len == 4) {
  1815. buf[1] = 90; /* "Granted" */
  1816. set_uint16(buf+2, 0);
  1817. memcpy(buf+4, answer, 4); /* address */
  1818. replylen = SOCKS4_NETWORK_LEN;
  1819. } else {
  1820. buf[1] = 91; /* "error" */
  1821. memset(buf+2, 0, 6);
  1822. replylen = SOCKS4_NETWORK_LEN;
  1823. }
  1824. } else if (conn->socks_request->socks_version == 5) {
  1825. /* SOCKS5 */
  1826. buf[0] = 0x05; /* version */
  1827. if (answer_type == RESOLVED_TYPE_IPV4 && answer_len == 4) {
  1828. buf[1] = SOCKS5_SUCCEEDED;
  1829. buf[2] = 0; /* reserved */
  1830. buf[3] = 0x01; /* IPv4 address type */
  1831. memcpy(buf+4, answer, 4); /* address */
  1832. set_uint16(buf+8, 0); /* port == 0. */
  1833. replylen = 10;
  1834. } else if (answer_type == RESOLVED_TYPE_IPV6 && answer_len == 16) {
  1835. buf[1] = SOCKS5_SUCCEEDED;
  1836. buf[2] = 0; /* reserved */
  1837. buf[3] = 0x04; /* IPv6 address type */
  1838. memcpy(buf+4, answer, 16); /* address */
  1839. set_uint16(buf+20, 0); /* port == 0. */
  1840. replylen = 22;
  1841. } else if (answer_type == RESOLVED_TYPE_HOSTNAME && answer_len < 256) {
  1842. buf[1] = SOCKS5_SUCCEEDED;
  1843. buf[2] = 0; /* reserved */
  1844. buf[3] = 0x03; /* Domainname address type */
  1845. buf[4] = (char)answer_len;
  1846. memcpy(buf+5, answer, answer_len); /* address */
  1847. set_uint16(buf+5+answer_len, 0); /* port == 0. */
  1848. replylen = 5+answer_len+2;
  1849. } else {
  1850. buf[1] = SOCKS5_HOST_UNREACHABLE;
  1851. memset(buf+2, 0, 8);
  1852. replylen = 10;
  1853. }
  1854. } else {
  1855. /* no socks version info; don't send anything back */
  1856. return;
  1857. }
  1858. connection_ap_handshake_socks_reply(conn, buf, replylen,
  1859. (answer_type == RESOLVED_TYPE_IPV4 ||
  1860. answer_type == RESOLVED_TYPE_IPV6) ?
  1861. 0 : END_STREAM_REASON_RESOLVEFAILED);
  1862. }
  1863. /** Send a socks reply to stream <b>conn</b>, using the appropriate
  1864. * socks version, etc, and mark <b>conn</b> as completed with SOCKS
  1865. * handshaking.
  1866. *
  1867. * If <b>reply</b> is defined, then write <b>replylen</b> bytes of it to conn
  1868. * and return, else reply based on <b>endreason</b> (one of
  1869. * END_STREAM_REASON_*). If <b>reply</b> is undefined, <b>endreason</b> can't
  1870. * be 0 or REASON_DONE. Send endreason to the controller, if appropriate.
  1871. */
  1872. void
  1873. connection_ap_handshake_socks_reply(edge_connection_t *conn, char *reply,
  1874. size_t replylen, int endreason)
  1875. {
  1876. char buf[256];
  1877. socks5_reply_status_t status =
  1878. connection_edge_end_reason_socks5_response(endreason);
  1879. tor_assert(conn->socks_request); /* make sure it's an AP stream */
  1880. control_event_stream_status(conn,
  1881. status==SOCKS5_SUCCEEDED ? STREAM_EVENT_SUCCEEDED : STREAM_EVENT_FAILED,
  1882. endreason);
  1883. if (conn->socks_request->has_finished) {
  1884. log_warn(LD_BUG, "(Harmless.) duplicate calls to "
  1885. "connection_ap_handshake_socks_reply.");
  1886. return;
  1887. }
  1888. if (replylen) { /* we already have a reply in mind */
  1889. connection_write_to_buf(reply, replylen, TO_CONN(conn));
  1890. conn->socks_request->has_finished = 1;
  1891. return;
  1892. }
  1893. if (conn->socks_request->socks_version == 4) {
  1894. memset(buf,0,SOCKS4_NETWORK_LEN);
  1895. #define SOCKS4_GRANTED 90
  1896. #define SOCKS4_REJECT 91
  1897. buf[1] = (status==SOCKS5_SUCCEEDED ? SOCKS4_GRANTED : SOCKS4_REJECT);
  1898. /* leave version, destport, destip zero */
  1899. connection_write_to_buf(buf, SOCKS4_NETWORK_LEN, TO_CONN(conn));
  1900. } else if (conn->socks_request->socks_version == 5) {
  1901. buf[0] = 5; /* version 5 */
  1902. buf[1] = (char)status;
  1903. buf[2] = 0;
  1904. buf[3] = 1; /* ipv4 addr */
  1905. memset(buf+4,0,6); /* Set external addr/port to 0.
  1906. The spec doesn't seem to say what to do here. -RD */
  1907. connection_write_to_buf(buf,10,TO_CONN(conn));
  1908. }
  1909. /* If socks_version isn't 4 or 5, don't send anything.
  1910. * This can happen in the case of AP bridges. */
  1911. conn->socks_request->has_finished = 1;
  1912. return;
  1913. }
  1914. /** A relay 'begin' or 'begin_dir' cell has arrived, and either we are
  1915. * an exit hop for the circuit, or we are the origin and it is a
  1916. * rendezvous begin.
  1917. *
  1918. * Launch a new exit connection and initialize things appropriately.
  1919. *
  1920. * If it's a rendezvous stream, call connection_exit_connect() on
  1921. * it.
  1922. *
  1923. * For general streams, call dns_resolve() on it first, and only call
  1924. * connection_exit_connect() if the dns answer is already known.
  1925. *
  1926. * Note that we don't call connection_add() on the new stream! We wait
  1927. * for connection_exit_connect() to do that.
  1928. *
  1929. * Return -(some circuit end reason) if we want to tear down <b>circ</b>.
  1930. * Else return 0.
  1931. */
  1932. int
  1933. connection_exit_begin_conn(cell_t *cell, circuit_t *circ)
  1934. {
  1935. edge_connection_t *n_stream;
  1936. relay_header_t rh;
  1937. char *address=NULL;
  1938. uint16_t port;
  1939. char end_payload[1];
  1940. or_circuit_t *or_circ = NULL;
  1941. assert_circuit_ok(circ);
  1942. if (!CIRCUIT_IS_ORIGIN(circ))
  1943. or_circ = TO_OR_CIRCUIT(circ);
  1944. relay_header_unpack(&rh, cell->payload);
  1945. /* Note: we have to use relay_send_command_from_edge here, not
  1946. * connection_edge_end or connection_edge_send_command, since those require
  1947. * that we have a stream connected to a circuit, and we don't connect to a
  1948. * circuit until we have a pending/successful resolve. */
  1949. if (!server_mode(get_options()) &&
  1950. circ->purpose != CIRCUIT_PURPOSE_S_REND_JOINED) {
  1951. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1952. "Relay begin cell at non-server. Closing.");
  1953. end_payload[0] = END_STREAM_REASON_EXITPOLICY;
  1954. relay_send_command_from_edge(rh.stream_id, circ, RELAY_COMMAND_END,
  1955. end_payload, 1, NULL);
  1956. return 0;
  1957. }
  1958. if (rh.command == RELAY_COMMAND_BEGIN) {
  1959. if (!memchr(cell->payload+RELAY_HEADER_SIZE, 0, rh.length)) {
  1960. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1961. "Relay begin cell has no \\0. Closing.");
  1962. end_payload[0] = END_STREAM_REASON_TORPROTOCOL;
  1963. relay_send_command_from_edge(rh.stream_id, circ, RELAY_COMMAND_END,
  1964. end_payload, 1, NULL);
  1965. return 0;
  1966. }
  1967. if (parse_addr_port(LOG_PROTOCOL_WARN, cell->payload+RELAY_HEADER_SIZE,
  1968. &address,NULL,&port)<0) {
  1969. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1970. "Unable to parse addr:port in relay begin cell. Closing.");
  1971. end_payload[0] = END_STREAM_REASON_TORPROTOCOL;
  1972. relay_send_command_from_edge(rh.stream_id, circ, RELAY_COMMAND_END,
  1973. end_payload, 1, NULL);
  1974. return 0;
  1975. }
  1976. if (port==0) {
  1977. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1978. "Missing port in relay begin cell. Closing.");
  1979. end_payload[0] = END_STREAM_REASON_TORPROTOCOL;
  1980. relay_send_command_from_edge(rh.stream_id, circ, RELAY_COMMAND_END,
  1981. end_payload, 1, NULL);
  1982. tor_free(address);
  1983. return 0;
  1984. }
  1985. if (or_circ && or_circ->is_first_hop) {
  1986. /* Don't let clients use us as a single-hop proxy; it attracts attackers
  1987. * and users who'd be better off with, well, single-hop proxies.
  1988. */
  1989. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1990. "Attempt to open a stream on first hop of circuit. Closing.");
  1991. end_payload[0] = END_STREAM_REASON_TORPROTOCOL;
  1992. relay_send_command_from_edge(rh.stream_id, circ, RELAY_COMMAND_END,
  1993. end_payload, 1, NULL);
  1994. tor_free(address);
  1995. return 0;
  1996. }
  1997. } else if (rh.command == RELAY_COMMAND_BEGIN_DIR) {
  1998. or_options_t *options = get_options();
  1999. port = options->DirPort; /* not actually used to open a connection */
  2000. if (!port || circ->purpose != CIRCUIT_PURPOSE_OR) {
  2001. end_payload[0] = END_STREAM_REASON_NOTDIRECTORY;
  2002. relay_send_command_from_edge(rh.stream_id, circ, RELAY_COMMAND_END,
  2003. end_payload, 1, NULL);
  2004. return 0;
  2005. }
  2006. if (or_circ && or_circ->p_conn && or_circ->p_conn->_base.address)
  2007. address = tor_strdup(or_circ->p_conn->_base.address);
  2008. else
  2009. address = tor_strdup("127.0.0.1");
  2010. } else {
  2011. log_warn(LD_BUG, "Got an unexpected command %d", (int)rh.command);
  2012. end_payload[0] = END_STREAM_REASON_INTERNAL;
  2013. relay_send_command_from_edge(rh.stream_id, circ, RELAY_COMMAND_END,
  2014. end_payload, 1, NULL);
  2015. return 0;
  2016. }
  2017. log_debug(LD_EXIT,"Creating new exit connection.");
  2018. n_stream = TO_EDGE_CONN(connection_new(CONN_TYPE_EXIT, AF_INET));
  2019. n_stream->_base.purpose = EXIT_PURPOSE_CONNECT;
  2020. n_stream->stream_id = rh.stream_id;
  2021. n_stream->_base.port = port;
  2022. /* leave n_stream->s at -1, because it's not yet valid */
  2023. n_stream->package_window = STREAMWINDOW_START;
  2024. n_stream->deliver_window = STREAMWINDOW_START;
  2025. if (circ->purpose == CIRCUIT_PURPOSE_S_REND_JOINED) {
  2026. origin_circuit_t *origin_circ = TO_ORIGIN_CIRCUIT(circ);
  2027. log_debug(LD_REND,"begin is for rendezvous. configuring stream.");
  2028. n_stream->_base.address = tor_strdup("(rendezvous)");
  2029. n_stream->_base.state = EXIT_CONN_STATE_CONNECTING;
  2030. strlcpy(n_stream->rend_query, origin_circ->rend_query,
  2031. sizeof(n_stream->rend_query));
  2032. tor_assert(connection_edge_is_rendezvous_stream(n_stream));
  2033. assert_circuit_ok(circ);
  2034. if (rend_service_set_connection_addr_port(n_stream, origin_circ) < 0) {
  2035. log_info(LD_REND,"Didn't find rendezvous service (port %d)",
  2036. n_stream->_base.port);
  2037. end_payload[0] = END_STREAM_REASON_EXITPOLICY;
  2038. relay_send_command_from_edge(rh.stream_id, circ, RELAY_COMMAND_END,
  2039. end_payload, 1, NULL);
  2040. connection_free(TO_CONN(n_stream));
  2041. tor_free(address);
  2042. return 0;
  2043. }
  2044. assert_circuit_ok(circ);
  2045. log_debug(LD_REND,"Finished assigning addr/port");
  2046. n_stream->cpath_layer = origin_circ->cpath->prev; /* link it */
  2047. /* add it into the linked list of n_streams on this circuit */
  2048. n_stream->next_stream = origin_circ->p_streams;
  2049. n_stream->on_circuit = circ;
  2050. origin_circ->p_streams = n_stream;
  2051. assert_circuit_ok(circ);
  2052. connection_exit_connect(n_stream);
  2053. tor_free(address);
  2054. return 0;
  2055. }
  2056. tor_strlower(address);
  2057. n_stream->_base.address = address;
  2058. n_stream->_base.state = EXIT_CONN_STATE_RESOLVEFAILED;
  2059. /* default to failed, change in dns_resolve if it turns out not to fail */
  2060. if (we_are_hibernating()) {
  2061. end_payload[0] = END_STREAM_REASON_HIBERNATING;
  2062. relay_send_command_from_edge(rh.stream_id, circ, RELAY_COMMAND_END,
  2063. end_payload, 1, NULL);
  2064. connection_free(TO_CONN(n_stream));
  2065. return 0;
  2066. }
  2067. n_stream->on_circuit = circ;
  2068. if (rh.command == RELAY_COMMAND_BEGIN_DIR) {
  2069. tor_assert(or_circ);
  2070. if (or_circ->p_conn && or_circ->p_conn->_base.addr)
  2071. n_stream->_base.addr = or_circ->p_conn->_base.addr;
  2072. return connection_exit_connect_dir(n_stream);
  2073. }
  2074. log_debug(LD_EXIT,"about to start the dns_resolve().");
  2075. /* send it off to the gethostbyname farm */
  2076. switch (dns_resolve(n_stream)) {
  2077. case 1: /* resolve worked; now n_stream is attached to circ. */
  2078. assert_circuit_ok(circ);
  2079. log_debug(LD_EXIT,"about to call connection_exit_connect().");
  2080. connection_exit_connect(n_stream);
  2081. return 0;
  2082. case -1: /* resolve failed */
  2083. end_payload[0] = END_STREAM_REASON_RESOLVEFAILED;
  2084. relay_send_command_from_edge(rh.stream_id, circ, RELAY_COMMAND_END,
  2085. end_payload, 1, NULL);
  2086. /* n_stream got freed. don't touch it. */
  2087. break;
  2088. case 0: /* resolve added to pending list */
  2089. assert_circuit_ok(circ);
  2090. break;
  2091. }
  2092. return 0;
  2093. }
  2094. /**
  2095. * Called when we receive a RELAY_RESOLVE cell 'cell' along the circuit 'circ';
  2096. * begin resolving the hostname, and (eventually) reply with a RESOLVED cell.
  2097. */
  2098. int
  2099. connection_exit_begin_resolve(cell_t *cell, or_circuit_t *circ)
  2100. {
  2101. edge_connection_t *dummy_conn;
  2102. relay_header_t rh;
  2103. assert_circuit_ok(TO_CIRCUIT(circ));
  2104. relay_header_unpack(&rh, cell->payload);
  2105. /* This 'dummy_conn' only exists to remember the stream ID
  2106. * associated with the resolve request; and to make the
  2107. * implementation of dns.c more uniform. (We really only need to
  2108. * remember the circuit, the stream ID, and the hostname to be
  2109. * resolved; but if we didn't store them in a connection like this,
  2110. * the housekeeping in dns.c would get way more complicated.)
  2111. */
  2112. dummy_conn = TO_EDGE_CONN(connection_new(CONN_TYPE_EXIT, AF_INET));
  2113. dummy_conn->stream_id = rh.stream_id;
  2114. dummy_conn->_base.address = tor_strndup(cell->payload+RELAY_HEADER_SIZE,
  2115. rh.length);
  2116. dummy_conn->_base.port = 0;
  2117. dummy_conn->_base.state = EXIT_CONN_STATE_RESOLVEFAILED;
  2118. dummy_conn->_base.purpose = EXIT_PURPOSE_RESOLVE;
  2119. dummy_conn->on_circuit = TO_CIRCUIT(circ);
  2120. /* send it off to the gethostbyname farm */
  2121. switch (dns_resolve(dummy_conn)) {
  2122. case -1: /* Impossible to resolve; a resolved cell was sent. */
  2123. /* Connection freed; don't touch it. */
  2124. return 0;
  2125. case 1: /* The result was cached; a resolved cell was sent. */
  2126. if (!dummy_conn->_base.marked_for_close)
  2127. connection_free(TO_CONN(dummy_conn));
  2128. return 0;
  2129. case 0: /* resolve added to pending list */
  2130. assert_circuit_ok(TO_CIRCUIT(circ));
  2131. break;
  2132. }
  2133. return 0;
  2134. }
  2135. /** Connect to conn's specified addr and port. If it worked, conn
  2136. * has now been added to the connection_array.
  2137. *
  2138. * Send back a connected cell. Include the resolved IP of the destination
  2139. * address, but <em>only</em> if it's a general exit stream. (Rendezvous
  2140. * streams must not reveal what IP they connected to.)
  2141. */
  2142. void
  2143. connection_exit_connect(edge_connection_t *edge_conn)
  2144. {
  2145. uint32_t addr;
  2146. uint16_t port;
  2147. connection_t *conn = TO_CONN(edge_conn);
  2148. if (!connection_edge_is_rendezvous_stream(edge_conn) &&
  2149. router_compare_to_my_exit_policy(edge_conn)) {
  2150. log_info(LD_EXIT,"%s:%d failed exit policy. Closing.",
  2151. escaped_safe_str(conn->address), conn->port);
  2152. connection_edge_end(edge_conn, END_STREAM_REASON_EXITPOLICY);
  2153. circuit_detach_stream(circuit_get_by_edge_conn(edge_conn), edge_conn);
  2154. connection_free(conn);
  2155. return;
  2156. }
  2157. addr = conn->addr;
  2158. port = conn->port;
  2159. if (redirect_exit_list) {
  2160. SMARTLIST_FOREACH(redirect_exit_list, exit_redirect_t *, r,
  2161. {
  2162. if ((addr&r->mask)==(r->addr&r->mask) &&
  2163. (r->port_min <= port) && (port <= r->port_max)) {
  2164. struct in_addr in;
  2165. if (r->is_redirect) {
  2166. char tmpbuf[INET_NTOA_BUF_LEN];
  2167. addr = r->addr_dest;
  2168. port = r->port_dest;
  2169. in.s_addr = htonl(addr);
  2170. tor_inet_ntoa(&in, tmpbuf, sizeof(tmpbuf));
  2171. log_debug(LD_EXIT, "Redirecting connection from %s:%d to %s:%d",
  2172. escaped_safe_str(conn->address), conn->port,
  2173. safe_str(tmpbuf), port);
  2174. }
  2175. break;
  2176. }
  2177. });
  2178. }
  2179. log_debug(LD_EXIT,"about to try connecting");
  2180. switch (connection_connect(conn, conn->address, addr, port)) {
  2181. case -1:
  2182. connection_edge_end_errno(edge_conn);
  2183. circuit_detach_stream(circuit_get_by_edge_conn(edge_conn), edge_conn);
  2184. connection_free(conn);
  2185. return;
  2186. case 0:
  2187. conn->state = EXIT_CONN_STATE_CONNECTING;
  2188. connection_watch_events(conn, EV_WRITE | EV_READ);
  2189. /* writable indicates finish;
  2190. * readable/error indicates broken link in windowsland. */
  2191. return;
  2192. /* case 1: fall through */
  2193. }
  2194. conn->state = EXIT_CONN_STATE_OPEN;
  2195. if (connection_wants_to_flush(conn)) {
  2196. /* in case there are any queued data cells */
  2197. log_warn(LD_BUG,"newly connected conn had data waiting!");
  2198. // connection_start_writing(conn);
  2199. }
  2200. connection_watch_events(conn, EV_READ);
  2201. /* also, deliver a 'connected' cell back through the circuit. */
  2202. if (connection_edge_is_rendezvous_stream(edge_conn)) {
  2203. /* rendezvous stream */
  2204. /* don't send an address back! */
  2205. connection_edge_send_command(edge_conn,
  2206. RELAY_COMMAND_CONNECTED,
  2207. NULL, 0);
  2208. } else { /* normal stream */
  2209. /* This must be the original address, not the redirected address. */
  2210. char connected_payload[8];
  2211. set_uint32(connected_payload, htonl(conn->addr));
  2212. set_uint32(connected_payload+4,
  2213. htonl(dns_clip_ttl(edge_conn->address_ttl)));
  2214. connection_edge_send_command(edge_conn,
  2215. RELAY_COMMAND_CONNECTED,
  2216. connected_payload, 8);
  2217. }
  2218. }
  2219. /** Given an exit conn that should attach to us as a directory server, open a
  2220. * bridge connection with a linked connection pir, create a new directory
  2221. * conn, and join them together. Return 0 on success (or if there was an
  2222. * error we could send back an end cell for). Return -(some circuit end
  2223. * reason) if the circuit needs to be torn down. Either connects
  2224. * <b>exitconn<b/>, frees it, or marks it, as appropriate.
  2225. */
  2226. static int
  2227. connection_exit_connect_dir(edge_connection_t *exitconn)
  2228. {
  2229. dir_connection_t *dirconn = NULL;
  2230. or_circuit_t *circ = TO_OR_CIRCUIT(exitconn->on_circuit);
  2231. log_info(LD_EXIT, "Opening local connection for anonymized directory exit");
  2232. exitconn->_base.state = EXIT_CONN_STATE_OPEN;
  2233. dirconn = TO_DIR_CONN(connection_new(CONN_TYPE_DIR, AF_INET));
  2234. dirconn->_base.addr = 0x7f000001;
  2235. dirconn->_base.port = 0;
  2236. dirconn->_base.address = tor_strdup("Tor network");
  2237. dirconn->_base.type = CONN_TYPE_DIR;
  2238. dirconn->_base.purpose = DIR_PURPOSE_SERVER;
  2239. dirconn->_base.state = DIR_CONN_STATE_SERVER_COMMAND_WAIT;
  2240. connection_link_connections(TO_CONN(dirconn), TO_CONN(exitconn));
  2241. if (connection_add(TO_CONN(exitconn))<0) {
  2242. connection_edge_end(exitconn, END_STREAM_REASON_RESOURCELIMIT);
  2243. connection_free(TO_CONN(exitconn));
  2244. connection_free(TO_CONN(dirconn));
  2245. return 0;
  2246. }
  2247. /* link exitconn to circ, now that we know we can use it. */
  2248. exitconn->next_stream = circ->n_streams;
  2249. circ->n_streams = exitconn;
  2250. if (connection_add(TO_CONN(dirconn))<0) {
  2251. connection_edge_end(exitconn, END_STREAM_REASON_RESOURCELIMIT);
  2252. connection_close_immediate(TO_CONN(exitconn));
  2253. connection_mark_for_close(TO_CONN(exitconn));
  2254. connection_free(TO_CONN(dirconn));
  2255. return 0;
  2256. }
  2257. connection_start_reading(TO_CONN(dirconn));
  2258. connection_start_reading(TO_CONN(exitconn));
  2259. if (connection_edge_send_command(exitconn,
  2260. RELAY_COMMAND_CONNECTED, NULL, 0) < 0) {
  2261. connection_mark_for_close(TO_CONN(exitconn));
  2262. connection_mark_for_close(TO_CONN(dirconn));
  2263. return 0;
  2264. }
  2265. return 0;
  2266. }
  2267. /** Return 1 if <b>conn</b> is a rendezvous stream, or 0 if
  2268. * it is a general stream.
  2269. */
  2270. int
  2271. connection_edge_is_rendezvous_stream(edge_connection_t *conn)
  2272. {
  2273. tor_assert(conn);
  2274. if (*conn->rend_query) /* XXX */ /* XXXX Why is this XXX? -NM */
  2275. return 1;
  2276. return 0;
  2277. }
  2278. /** Return 1 if router <b>exit</b> is likely to allow stream <b>conn</b>
  2279. * to exit from it, or 0 if it probably will not allow it.
  2280. * (We might be uncertain if conn's destination address has not yet been
  2281. * resolved.)
  2282. */
  2283. int
  2284. connection_ap_can_use_exit(edge_connection_t *conn, routerinfo_t *exit)
  2285. {
  2286. tor_assert(conn);
  2287. tor_assert(conn->_base.type == CONN_TYPE_AP);
  2288. tor_assert(conn->socks_request);
  2289. tor_assert(exit);
  2290. /* If a particular exit node has been requested for the new connection,
  2291. * make sure the exit node of the existing circuit matches exactly.
  2292. */
  2293. if (conn->chosen_exit_name) {
  2294. if (router_get_by_nickname(conn->chosen_exit_name, 1) != exit) {
  2295. /* doesn't match */
  2296. // log_debug(LD_APP,"Requested node '%s', considering node '%s'. No.",
  2297. // conn->chosen_exit_name, exit->nickname);
  2298. return 0;
  2299. }
  2300. }
  2301. if (conn->socks_request->command == SOCKS_COMMAND_CONNECT) {
  2302. struct in_addr in;
  2303. uint32_t addr = 0;
  2304. addr_policy_result_t r;
  2305. if (tor_inet_aton(conn->socks_request->address, &in))
  2306. addr = ntohl(in.s_addr);
  2307. r = compare_addr_to_addr_policy(addr, conn->socks_request->port,
  2308. exit->exit_policy);
  2309. if (r == ADDR_POLICY_REJECTED || r == ADDR_POLICY_PROBABLY_REJECTED)
  2310. return 0;
  2311. } else if (SOCKS_COMMAND_IS_RESOLVE(conn->socks_request->command)) {
  2312. /* Can't support reverse lookups without eventdns. */
  2313. if (conn->socks_request->command == SOCKS_COMMAND_RESOLVE_PTR &&
  2314. exit->has_old_dnsworkers)
  2315. return 0;
  2316. /* Don't send DNS requests to non-exit servers by default. */
  2317. if (!conn->chosen_exit_name && policy_is_reject_star(exit->exit_policy))
  2318. return 0;
  2319. }
  2320. return 1;
  2321. }
  2322. /** Make connection redirection follow the provided list of
  2323. * exit_redirect_t */
  2324. void
  2325. set_exit_redirects(smartlist_t *lst)
  2326. {
  2327. if (redirect_exit_list) {
  2328. SMARTLIST_FOREACH(redirect_exit_list, exit_redirect_t *, p, tor_free(p));
  2329. smartlist_free(redirect_exit_list);
  2330. }
  2331. if (lst && smartlist_len(lst)) {
  2332. log_warn(LD_GENERAL,
  2333. "The RedirectExit option is deprecated; it will go away in a "
  2334. "future version of Tor.");
  2335. }
  2336. redirect_exit_list = lst;
  2337. }
  2338. /** If address is of the form "y.onion" with a well-formed handle y:
  2339. * Put a NUL after y, lower-case it, and return ONION_HOSTNAME.
  2340. *
  2341. * If address is of the form "y.exit":
  2342. * Put a NUL after y and return EXIT_HOSTNAME.
  2343. *
  2344. * Otherwise:
  2345. * Return NORMAL_HOSTNAME and change nothing.
  2346. */
  2347. hostname_type_t
  2348. parse_extended_hostname(char *address)
  2349. {
  2350. char *s;
  2351. char query[REND_SERVICE_ID_LEN+1];
  2352. s = strrchr(address,'.');
  2353. if (!s)
  2354. return NORMAL_HOSTNAME; /* no dot, thus normal */
  2355. if (!strcmp(s+1,"exit")) {
  2356. *s = 0; /* nul-terminate it */
  2357. return EXIT_HOSTNAME; /* .exit */
  2358. }
  2359. if (strcmp(s+1,"onion"))
  2360. return NORMAL_HOSTNAME; /* neither .exit nor .onion, thus normal */
  2361. /* so it is .onion */
  2362. *s = 0; /* nul-terminate it */
  2363. if (strlcpy(query, address, REND_SERVICE_ID_LEN+1) >=
  2364. REND_SERVICE_ID_LEN+1)
  2365. goto failed;
  2366. if (rend_valid_service_id(query)) {
  2367. return ONION_HOSTNAME; /* success */
  2368. }
  2369. failed:
  2370. /* otherwise, return to previous state and return 0 */
  2371. *s = '.';
  2372. return BAD_HOSTNAME;
  2373. }
  2374. /** Check if the address is of the form "y.noconnect"
  2375. */
  2376. int
  2377. hostname_is_noconnect_address(const char *address)
  2378. {
  2379. return ! strcasecmpend(address, ".noconnect");
  2380. }