circuitbuild.c 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2008, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /* $Id$ */
  7. const char circuitbuild_c_id[] =
  8. "$Id$";
  9. /**
  10. * \file circuitbuild.c
  11. * \brief The actual details of building circuits.
  12. **/
  13. #include "or.h"
  14. /********* START VARIABLES **********/
  15. /** A global list of all circuits at this hop. */
  16. extern circuit_t *global_circuitlist;
  17. /** An entry_guard_t represents our information about a chosen long-term
  18. * first hop, known as a "helper" node in the literature. We can't just
  19. * use a routerinfo_t, since we want to remember these even when we
  20. * don't have a directory. */
  21. typedef struct {
  22. char nickname[MAX_NICKNAME_LEN+1];
  23. char identity[DIGEST_LEN];
  24. time_t chosen_on_date; /**< Approximately when was this guard added?
  25. * "0" if we don't know. */
  26. char *chosen_by_version; /**< What tor version added this guard? NULL
  27. * if we don't know. */
  28. unsigned int made_contact : 1; /**< 0 if we have never connected to this
  29. * router, 1 if we have. */
  30. unsigned int can_retry : 1; /**< Should we retry connecting to this entry,
  31. * in spite of having it marked as unreachable?*/
  32. time_t bad_since; /**< 0 if this guard is currently usable, or the time at
  33. * which it was observed to become (according to the
  34. * directory or the user configuration) unusable. */
  35. time_t unreachable_since; /**< 0 if we can connect to this guard, or the
  36. * time at which we first noticed we couldn't
  37. * connect to it. */
  38. time_t last_attempted; /**< 0 if we can connect to this guard, or the time
  39. * at which we last failed to connect to it. */
  40. } entry_guard_t;
  41. /** A list of our chosen entry guards. */
  42. static smartlist_t *entry_guards = NULL;
  43. /** A value of 1 means that the entry_guards list has changed
  44. * and those changes need to be flushed to disk. */
  45. static int entry_guards_dirty = 0;
  46. /********* END VARIABLES ************/
  47. static int circuit_deliver_create_cell(circuit_t *circ,
  48. uint8_t cell_type, const char *payload);
  49. static int onion_pick_cpath_exit(origin_circuit_t *circ, extend_info_t *exit);
  50. static crypt_path_t *onion_next_hop_in_cpath(crypt_path_t *cpath);
  51. static int onion_extend_cpath(origin_circuit_t *circ);
  52. static int count_acceptable_routers(smartlist_t *routers);
  53. static int onion_append_hop(crypt_path_t **head_ptr, extend_info_t *choice);
  54. static void entry_guards_changed(void);
  55. static time_t start_of_month(time_t when);
  56. /** Iterate over values of circ_id, starting from conn-\>next_circ_id,
  57. * and with the high bit specified by conn-\>circ_id_type, until we get
  58. * a circ_id that is not in use by any other circuit on that conn.
  59. *
  60. * Return it, or 0 if can't get a unique circ_id.
  61. */
  62. static uint16_t
  63. get_unique_circ_id_by_conn(or_connection_t *conn)
  64. {
  65. uint16_t test_circ_id;
  66. uint16_t attempts=0;
  67. uint16_t high_bit;
  68. tor_assert(conn);
  69. if (conn->circ_id_type == CIRC_ID_TYPE_NEITHER) {
  70. log_warn(LD_BUG, "Trying to pick a circuit ID for a connection from "
  71. "a client with no identity.");
  72. return 0;
  73. }
  74. high_bit = (conn->circ_id_type == CIRC_ID_TYPE_HIGHER) ? 1<<15 : 0;
  75. do {
  76. /* Sequentially iterate over test_circ_id=1...1<<15-1 until we find a
  77. * circID such that (high_bit|test_circ_id) is not already used. */
  78. test_circ_id = conn->next_circ_id++;
  79. if (test_circ_id == 0 || test_circ_id >= 1<<15) {
  80. test_circ_id = 1;
  81. conn->next_circ_id = 2;
  82. }
  83. if (++attempts > 1<<15) {
  84. /* Make sure we don't loop forever if all circ_id's are used. This
  85. * matters because it's an external DoS opportunity.
  86. */
  87. log_warn(LD_CIRC,"No unused circ IDs. Failing.");
  88. return 0;
  89. }
  90. test_circ_id |= high_bit;
  91. } while (circuit_get_by_circid_orconn(test_circ_id, conn));
  92. return test_circ_id;
  93. }
  94. /** If <b>verbose</b> is false, allocate and return a comma-separated list of
  95. * the currently built elements of circuit_t. If <b>verbose</b> is true, also
  96. * list information about link status in a more verbose format using spaces.
  97. * If <b>verbose_names</b> is false, give nicknames for Named routers and hex
  98. * digests for others; if <b>verbose_names</b> is true, use $DIGEST=Name style
  99. * names.
  100. */
  101. static char *
  102. circuit_list_path_impl(origin_circuit_t *circ, int verbose, int verbose_names)
  103. {
  104. crypt_path_t *hop;
  105. smartlist_t *elements;
  106. const char *states[] = {"closed", "waiting for keys", "open"};
  107. char buf[128];
  108. char *s;
  109. elements = smartlist_create();
  110. if (verbose) {
  111. const char *nickname = build_state_get_exit_nickname(circ->build_state);
  112. tor_snprintf(buf, sizeof(buf), "%s%s circ (length %d%s%s):",
  113. circ->build_state->is_internal ? "internal" : "exit",
  114. circ->build_state->need_uptime ? " (high-uptime)" : "",
  115. circ->build_state->desired_path_len,
  116. circ->_base.state == CIRCUIT_STATE_OPEN ? "" : ", exit ",
  117. circ->_base.state == CIRCUIT_STATE_OPEN ? "" :
  118. (nickname?nickname:"*unnamed*"));
  119. smartlist_add(elements, tor_strdup(buf));
  120. }
  121. hop = circ->cpath;
  122. do {
  123. routerinfo_t *ri;
  124. char *elt;
  125. if (!hop)
  126. break;
  127. if (!verbose && hop->state != CPATH_STATE_OPEN)
  128. break;
  129. if (!hop->extend_info)
  130. break;
  131. if (verbose_names) {
  132. elt = tor_malloc(MAX_VERBOSE_NICKNAME_LEN+1);
  133. if ((ri = router_get_by_digest(hop->extend_info->identity_digest))) {
  134. router_get_verbose_nickname(elt, ri);
  135. } else if (hop->extend_info->nickname &&
  136. is_legal_nickname(hop->extend_info->nickname)) {
  137. elt[0] = '$';
  138. base16_encode(elt+1, HEX_DIGEST_LEN+1,
  139. hop->extend_info->identity_digest, DIGEST_LEN);
  140. elt[HEX_DIGEST_LEN+1]= '~';
  141. strlcpy(elt+HEX_DIGEST_LEN+2,
  142. hop->extend_info->nickname, MAX_NICKNAME_LEN+1);
  143. } else {
  144. elt[0] = '$';
  145. base16_encode(elt+1, HEX_DIGEST_LEN+1,
  146. hop->extend_info->identity_digest, DIGEST_LEN);
  147. }
  148. } else { /* ! verbose_names */
  149. if ((ri = router_get_by_digest(hop->extend_info->identity_digest)) &&
  150. ri->is_named) {
  151. elt = tor_strdup(hop->extend_info->nickname);
  152. } else {
  153. elt = tor_malloc(HEX_DIGEST_LEN+2);
  154. elt[0] = '$';
  155. base16_encode(elt+1, HEX_DIGEST_LEN+1,
  156. hop->extend_info->identity_digest, DIGEST_LEN);
  157. }
  158. }
  159. tor_assert(elt);
  160. if (verbose) {
  161. size_t len = strlen(elt)+2+strlen(states[hop->state])+1;
  162. char *v = tor_malloc(len);
  163. tor_assert(hop->state <= 2);
  164. tor_snprintf(v,len,"%s(%s)",elt,states[hop->state]);
  165. smartlist_add(elements, v);
  166. tor_free(elt);
  167. } else {
  168. smartlist_add(elements, elt);
  169. }
  170. hop = hop->next;
  171. } while (hop != circ->cpath);
  172. s = smartlist_join_strings(elements, verbose?" ":",", 0, NULL);
  173. SMARTLIST_FOREACH(elements, char*, cp, tor_free(cp));
  174. smartlist_free(elements);
  175. return s;
  176. }
  177. /** If <b>verbose</b> is false, allocate and return a comma-separated
  178. * list of the currently built elements of circuit_t. If
  179. * <b>verbose</b> is true, also list information about link status in
  180. * a more verbose format using spaces.
  181. */
  182. char *
  183. circuit_list_path(origin_circuit_t *circ, int verbose)
  184. {
  185. return circuit_list_path_impl(circ, verbose, 0);
  186. }
  187. /** Allocate and return a comma-separated list of the currently built elements
  188. * of circuit_t, giving each as a verbose nickname.
  189. */
  190. char *
  191. circuit_list_path_for_controller(origin_circuit_t *circ)
  192. {
  193. return circuit_list_path_impl(circ, 0, 1);
  194. }
  195. /** Log, at severity <b>severity</b>, the nicknames of each router in
  196. * circ's cpath. Also log the length of the cpath, and the intended
  197. * exit point.
  198. */
  199. void
  200. circuit_log_path(int severity, unsigned int domain, origin_circuit_t *circ)
  201. {
  202. char *s = circuit_list_path(circ,1);
  203. log(severity,domain,"%s",s);
  204. tor_free(s);
  205. }
  206. /** Tell the rep(utation)hist(ory) module about the status of the links
  207. * in circ. Hops that have become OPEN are marked as successfully
  208. * extended; the _first_ hop that isn't open (if any) is marked as
  209. * unable to extend.
  210. */
  211. /* XXXX Someday we should learn from OR circuits too. */
  212. void
  213. circuit_rep_hist_note_result(origin_circuit_t *circ)
  214. {
  215. crypt_path_t *hop;
  216. char *prev_digest = NULL;
  217. routerinfo_t *router;
  218. hop = circ->cpath;
  219. if (!hop) /* circuit hasn't started building yet. */
  220. return;
  221. if (server_mode(get_options())) {
  222. routerinfo_t *me = router_get_my_routerinfo();
  223. if (!me)
  224. return;
  225. prev_digest = me->cache_info.identity_digest;
  226. }
  227. do {
  228. router = router_get_by_digest(hop->extend_info->identity_digest);
  229. if (router) {
  230. if (prev_digest) {
  231. if (hop->state == CPATH_STATE_OPEN)
  232. rep_hist_note_extend_succeeded(prev_digest,
  233. router->cache_info.identity_digest);
  234. else {
  235. rep_hist_note_extend_failed(prev_digest,
  236. router->cache_info.identity_digest);
  237. break;
  238. }
  239. }
  240. prev_digest = router->cache_info.identity_digest;
  241. } else {
  242. prev_digest = NULL;
  243. }
  244. hop=hop->next;
  245. } while (hop!=circ->cpath);
  246. }
  247. /** Pick all the entries in our cpath. Stop and return 0 when we're
  248. * happy, or return -1 if an error occurs. */
  249. static int
  250. onion_populate_cpath(origin_circuit_t *circ)
  251. {
  252. int r;
  253. again:
  254. r = onion_extend_cpath(circ);
  255. if (r < 0) {
  256. log_info(LD_CIRC,"Generating cpath hop failed.");
  257. return -1;
  258. }
  259. if (r == 0)
  260. goto again;
  261. return 0; /* if r == 1 */
  262. }
  263. /** Create and return a new origin circuit. Initialize its purpose and
  264. * build-state based on our arguments. The <b>flags</b> argument is a
  265. * bitfield of CIRCLAUNCH_* flags. */
  266. origin_circuit_t *
  267. origin_circuit_init(uint8_t purpose, int flags)
  268. {
  269. /* sets circ->p_circ_id and circ->p_conn */
  270. origin_circuit_t *circ = origin_circuit_new();
  271. circuit_set_state(TO_CIRCUIT(circ), CIRCUIT_STATE_OR_WAIT);
  272. circ->build_state = tor_malloc_zero(sizeof(cpath_build_state_t));
  273. circ->build_state->onehop_tunnel =
  274. ((flags & CIRCLAUNCH_ONEHOP_TUNNEL) ? 1 : 0);
  275. circ->build_state->need_uptime =
  276. ((flags & CIRCLAUNCH_NEED_UPTIME) ? 1 : 0);
  277. circ->build_state->need_capacity =
  278. ((flags & CIRCLAUNCH_NEED_CAPACITY) ? 1 : 0);
  279. circ->build_state->is_internal =
  280. ((flags & CIRCLAUNCH_IS_INTERNAL) ? 1 : 0);
  281. circ->_base.purpose = purpose;
  282. return circ;
  283. }
  284. /** Build a new circuit for <b>purpose</b>. If <b>exit</b>
  285. * is defined, then use that as your exit router, else choose a suitable
  286. * exit node.
  287. *
  288. * Also launch a connection to the first OR in the chosen path, if
  289. * it's not open already.
  290. */
  291. origin_circuit_t *
  292. circuit_establish_circuit(uint8_t purpose, extend_info_t *exit, int flags)
  293. {
  294. origin_circuit_t *circ;
  295. int err_reason = 0;
  296. circ = origin_circuit_init(purpose, flags);
  297. if (onion_pick_cpath_exit(circ, exit) < 0 ||
  298. onion_populate_cpath(circ) < 0) {
  299. circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_NOPATH);
  300. return NULL;
  301. }
  302. control_event_circuit_status(circ, CIRC_EVENT_LAUNCHED, 0);
  303. if ((err_reason = circuit_handle_first_hop(circ)) < 0) {
  304. circuit_mark_for_close(TO_CIRCUIT(circ), -err_reason);
  305. return NULL;
  306. }
  307. return circ;
  308. }
  309. /** Start establishing the first hop of our circuit. Figure out what
  310. * OR we should connect to, and if necessary start the connection to
  311. * it. If we're already connected, then send the 'create' cell.
  312. * Return 0 for ok, -reason if circ should be marked-for-close. */
  313. int
  314. circuit_handle_first_hop(origin_circuit_t *circ)
  315. {
  316. crypt_path_t *firsthop;
  317. or_connection_t *n_conn;
  318. char tmpbuf[INET_NTOA_BUF_LEN];
  319. struct in_addr in;
  320. int err_reason = 0;
  321. firsthop = onion_next_hop_in_cpath(circ->cpath);
  322. tor_assert(firsthop);
  323. tor_assert(firsthop->extend_info);
  324. /* now see if we're already connected to the first OR in 'route' */
  325. in.s_addr = htonl(firsthop->extend_info->addr);
  326. tor_inet_ntoa(&in, tmpbuf, sizeof(tmpbuf));
  327. log_debug(LD_CIRC,"Looking for firsthop '%s:%u'",tmpbuf,
  328. firsthop->extend_info->port);
  329. /* imprint the circuit with its future n_conn->id */
  330. memcpy(circ->_base.n_conn_id_digest, firsthop->extend_info->identity_digest,
  331. DIGEST_LEN);
  332. n_conn = connection_or_get_by_identity_digest(
  333. firsthop->extend_info->identity_digest);
  334. /* If we don't have an open conn, or the conn we have is obsolete
  335. * (i.e. old or broken) and the other side will let us make a second
  336. * connection without dropping it immediately... */
  337. if (!n_conn || n_conn->_base.state != OR_CONN_STATE_OPEN ||
  338. (n_conn->_base.or_is_obsolete &&
  339. router_digest_version_as_new_as(firsthop->extend_info->identity_digest,
  340. "0.1.1.9-alpha-cvs"))) {
  341. /* not currently connected */
  342. circ->_base.n_addr = firsthop->extend_info->addr;
  343. circ->_base.n_port = firsthop->extend_info->port;
  344. if (!n_conn || n_conn->_base.or_is_obsolete) { /* launch the connection */
  345. n_conn = connection_or_connect(firsthop->extend_info->addr,
  346. firsthop->extend_info->port,
  347. firsthop->extend_info->identity_digest);
  348. if (!n_conn) { /* connect failed, forget the whole thing */
  349. log_info(LD_CIRC,"connect to firsthop failed. Closing.");
  350. return -END_CIRC_REASON_CONNECTFAILED;
  351. }
  352. }
  353. log_debug(LD_CIRC,"connecting in progress (or finished). Good.");
  354. /* return success. The onion/circuit/etc will be taken care of
  355. * automatically (may already have been) whenever n_conn reaches
  356. * OR_CONN_STATE_OPEN.
  357. */
  358. return 0;
  359. } else { /* it's already open. use it. */
  360. circ->_base.n_addr = n_conn->_base.addr;
  361. circ->_base.n_port = n_conn->_base.port;
  362. circ->_base.n_conn = n_conn;
  363. log_debug(LD_CIRC,"Conn open. Delivering first onion skin.");
  364. if ((err_reason = circuit_send_next_onion_skin(circ)) < 0) {
  365. log_info(LD_CIRC,"circuit_send_next_onion_skin failed.");
  366. return err_reason;
  367. }
  368. }
  369. return 0;
  370. }
  371. /** Find any circuits that are waiting on <b>or_conn</b> to become
  372. * open and get them to send their create cells forward.
  373. *
  374. * Status is 1 if connect succeeded, or 0 if connect failed.
  375. */
  376. void
  377. circuit_n_conn_done(or_connection_t *or_conn, int status)
  378. {
  379. smartlist_t *pending_circs;
  380. int err_reason = 0;
  381. log_debug(LD_CIRC,"or_conn to %s, status=%d",
  382. or_conn->nickname ? or_conn->nickname : "NULL", status);
  383. pending_circs = smartlist_create();
  384. circuit_get_all_pending_on_or_conn(pending_circs, or_conn);
  385. SMARTLIST_FOREACH(pending_circs, circuit_t *, circ,
  386. {
  387. /* These checks are redundant wrt get_all_pending_on_or_conn, but I'm
  388. * leaving them in in case it's possible for the status of a circuit to
  389. * change as we're going down the list. */
  390. if (circ->marked_for_close || circ->n_conn ||
  391. circ->state != CIRCUIT_STATE_OR_WAIT)
  392. continue;
  393. if (tor_digest_is_zero(circ->n_conn_id_digest)) {
  394. /* Look at addr/port. This is an unkeyed connection. */
  395. if (circ->n_addr != or_conn->_base.addr ||
  396. circ->n_port != or_conn->_base.port)
  397. continue;
  398. /* now teach circ the right identity_digest */
  399. memcpy(circ->n_conn_id_digest, or_conn->identity_digest, DIGEST_LEN);
  400. } else {
  401. /* We expected a key. See if it's the right one. */
  402. if (memcmp(or_conn->identity_digest,
  403. circ->n_conn_id_digest, DIGEST_LEN))
  404. continue;
  405. }
  406. if (!status) { /* or_conn failed; close circ */
  407. log_info(LD_CIRC,"or_conn failed. Closing circ.");
  408. circuit_mark_for_close(circ, END_CIRC_REASON_OR_CONN_CLOSED);
  409. continue;
  410. }
  411. log_debug(LD_CIRC, "Found circ, sending create cell.");
  412. /* circuit_deliver_create_cell will set n_circ_id and add us to
  413. * orconn_circuid_circuit_map, so we don't need to call
  414. * set_circid_orconn here. */
  415. circ->n_conn = or_conn;
  416. if (CIRCUIT_IS_ORIGIN(circ)) {
  417. if ((err_reason =
  418. circuit_send_next_onion_skin(TO_ORIGIN_CIRCUIT(circ))) < 0) {
  419. log_info(LD_CIRC,
  420. "send_next_onion_skin failed; circuit marked for closing.");
  421. circuit_mark_for_close(circ, -err_reason);
  422. continue;
  423. /* XXX could this be bad, eg if next_onion_skin failed because conn
  424. * died? */
  425. }
  426. } else {
  427. /* pull the create cell out of circ->onionskin, and send it */
  428. tor_assert(circ->n_conn_onionskin);
  429. if (circuit_deliver_create_cell(circ,CELL_CREATE,
  430. circ->n_conn_onionskin)<0) {
  431. circuit_mark_for_close(circ, END_CIRC_REASON_RESOURCELIMIT);
  432. continue;
  433. }
  434. tor_free(circ->n_conn_onionskin);
  435. circuit_set_state(circ, CIRCUIT_STATE_OPEN);
  436. }
  437. });
  438. smartlist_free(pending_circs);
  439. }
  440. /** Find a new circid that isn't currently in use on the circ->n_conn
  441. * for the outgoing
  442. * circuit <b>circ</b>, and deliver a cell of type <b>cell_type</b>
  443. * (either CELL_CREATE or CELL_CREATE_FAST) with payload <b>payload</b>
  444. * to this circuit.
  445. * Return -1 if we failed to find a suitable circid, else return 0.
  446. */
  447. static int
  448. circuit_deliver_create_cell(circuit_t *circ, uint8_t cell_type,
  449. const char *payload)
  450. {
  451. cell_t cell;
  452. uint16_t id;
  453. tor_assert(circ);
  454. tor_assert(circ->n_conn);
  455. tor_assert(payload);
  456. tor_assert(cell_type == CELL_CREATE || cell_type == CELL_CREATE_FAST);
  457. id = get_unique_circ_id_by_conn(circ->n_conn);
  458. if (!id) {
  459. log_warn(LD_CIRC,"failed to get unique circID.");
  460. return -1;
  461. }
  462. log_debug(LD_CIRC,"Chosen circID %u.", id);
  463. circuit_set_n_circid_orconn(circ, id, circ->n_conn);
  464. memset(&cell, 0, sizeof(cell_t));
  465. cell.command = cell_type;
  466. cell.circ_id = circ->n_circ_id;
  467. memcpy(cell.payload, payload, ONIONSKIN_CHALLENGE_LEN);
  468. append_cell_to_circuit_queue(circ, circ->n_conn, &cell, CELL_DIRECTION_OUT);
  469. if (CIRCUIT_IS_ORIGIN(circ)) {
  470. /* mark it so it gets better rate limiting treatment. */
  471. circ->n_conn->client_used = time(NULL);
  472. }
  473. return 0;
  474. }
  475. /** We've decided to start our reachability testing. If all
  476. * is set, log this to the user. Return 1 if we did, or 0 if
  477. * we chose not to log anything. */
  478. int
  479. inform_testing_reachability(void)
  480. {
  481. char dirbuf[128];
  482. routerinfo_t *me = router_get_my_routerinfo();
  483. if (!me)
  484. return 0;
  485. if (me->dir_port)
  486. tor_snprintf(dirbuf, sizeof(dirbuf), " and DirPort %s:%d",
  487. me->address, me->dir_port);
  488. log(LOG_NOTICE, LD_OR, "Now checking whether ORPort %s:%d%s %s reachable... "
  489. "(this may take up to %d minutes -- look for log "
  490. "messages indicating success)",
  491. me->address, me->or_port,
  492. me->dir_port ? dirbuf : "",
  493. me->dir_port ? "are" : "is",
  494. TIMEOUT_UNTIL_UNREACHABILITY_COMPLAINT/60);
  495. return 1;
  496. }
  497. /** Return true iff we should send a create_fast cell to build a circuit
  498. * starting at <b>router</b>. (If <b>router</b> is NULL, we don't have
  499. * information on the router, so assume true.) */
  500. static INLINE int
  501. should_use_create_fast_for_router(routerinfo_t *router,
  502. origin_circuit_t *circ)
  503. {
  504. or_options_t *options = get_options();
  505. if (!options->FastFirstHopPK) /* create_fast is disabled */
  506. return 0;
  507. if (router && router->platform &&
  508. !tor_version_as_new_as(router->platform, "0.1.0.6-rc")) {
  509. /* known not to work */
  510. return 0;
  511. }
  512. if (server_mode(options) && circ->cpath->extend_info->onion_key) {
  513. /* We're a server, and we know an onion key. We can choose.
  514. * Prefer to blend in. */
  515. return 0;
  516. }
  517. return 1;
  518. }
  519. /** This is the backbone function for building circuits.
  520. *
  521. * If circ's first hop is closed, then we need to build a create
  522. * cell and send it forward.
  523. *
  524. * Otherwise, we need to build a relay extend cell and send it
  525. * forward.
  526. *
  527. * Return -reason if we want to tear down circ, else return 0.
  528. */
  529. int
  530. circuit_send_next_onion_skin(origin_circuit_t *circ)
  531. {
  532. crypt_path_t *hop;
  533. routerinfo_t *router;
  534. char payload[2+4+DIGEST_LEN+ONIONSKIN_CHALLENGE_LEN];
  535. char *onionskin;
  536. size_t payload_len;
  537. tor_assert(circ);
  538. if (circ->cpath->state == CPATH_STATE_CLOSED) {
  539. int fast;
  540. uint8_t cell_type;
  541. log_debug(LD_CIRC,"First skin; sending create cell.");
  542. router = router_get_by_digest(circ->_base.n_conn->identity_digest);
  543. fast = should_use_create_fast_for_router(router, circ);
  544. if (!fast && !circ->cpath->extend_info->onion_key) {
  545. log_warn(LD_CIRC,
  546. "Can't send create_fast, but have no onion key. Failing.");
  547. return - END_CIRC_REASON_INTERNAL;
  548. }
  549. if (!fast) {
  550. /* We are an OR, or we are connecting to an old Tor: we should
  551. * send an old slow create cell.
  552. */
  553. cell_type = CELL_CREATE;
  554. if (onion_skin_create(circ->cpath->extend_info->onion_key,
  555. &(circ->cpath->dh_handshake_state),
  556. payload) < 0) {
  557. log_warn(LD_CIRC,"onion_skin_create (first hop) failed.");
  558. return - END_CIRC_REASON_INTERNAL;
  559. }
  560. } else {
  561. /* We are not an OR, and we're building the first hop of a circuit to a
  562. * new OR: we can be speedy and use CREATE_FAST to save an RSA operation
  563. * and a DH operation. */
  564. cell_type = CELL_CREATE_FAST;
  565. memset(payload, 0, sizeof(payload));
  566. crypto_rand(circ->cpath->fast_handshake_state,
  567. sizeof(circ->cpath->fast_handshake_state));
  568. memcpy(payload, circ->cpath->fast_handshake_state,
  569. sizeof(circ->cpath->fast_handshake_state));
  570. }
  571. if (circuit_deliver_create_cell(TO_CIRCUIT(circ), cell_type, payload) < 0)
  572. return - END_CIRC_REASON_RESOURCELIMIT;
  573. circ->cpath->state = CPATH_STATE_AWAITING_KEYS;
  574. circuit_set_state(TO_CIRCUIT(circ), CIRCUIT_STATE_BUILDING);
  575. log_info(LD_CIRC,"First hop: finished sending %s cell to '%s'",
  576. fast ? "CREATE_FAST" : "CREATE",
  577. router ? router->nickname : "<unnamed>");
  578. } else {
  579. tor_assert(circ->cpath->state == CPATH_STATE_OPEN);
  580. tor_assert(circ->_base.state == CIRCUIT_STATE_BUILDING);
  581. log_debug(LD_CIRC,"starting to send subsequent skin.");
  582. hop = onion_next_hop_in_cpath(circ->cpath);
  583. if (!hop) {
  584. /* done building the circuit. whew. */
  585. circuit_set_state(TO_CIRCUIT(circ), CIRCUIT_STATE_OPEN);
  586. log_info(LD_CIRC,"circuit built!");
  587. circuit_reset_failure_count(0);
  588. if (!has_completed_circuit && !circ->build_state->onehop_tunnel) {
  589. or_options_t *options = get_options();
  590. has_completed_circuit=1;
  591. /* FFFF Log a count of known routers here */
  592. log(LOG_NOTICE, LD_GENERAL,
  593. "Tor has successfully opened a circuit. "
  594. "Looks like client functionality is working.");
  595. control_event_client_status(LOG_NOTICE, "CIRCUIT_ESTABLISHED");
  596. if (server_mode(options) && !check_whether_orport_reachable()) {
  597. inform_testing_reachability();
  598. consider_testing_reachability(1, 1);
  599. }
  600. }
  601. circuit_rep_hist_note_result(circ);
  602. circuit_has_opened(circ); /* do other actions as necessary */
  603. return 0;
  604. }
  605. set_uint32(payload, htonl(hop->extend_info->addr));
  606. set_uint16(payload+4, htons(hop->extend_info->port));
  607. onionskin = payload+2+4;
  608. memcpy(payload+2+4+ONIONSKIN_CHALLENGE_LEN,
  609. hop->extend_info->identity_digest, DIGEST_LEN);
  610. payload_len = 2+4+ONIONSKIN_CHALLENGE_LEN+DIGEST_LEN;
  611. if (onion_skin_create(hop->extend_info->onion_key,
  612. &(hop->dh_handshake_state), onionskin) < 0) {
  613. log_warn(LD_CIRC,"onion_skin_create failed.");
  614. return - END_CIRC_REASON_INTERNAL;
  615. }
  616. log_info(LD_CIRC,"Sending extend relay cell.");
  617. /* send it to hop->prev, because it will transfer
  618. * it to a create cell and then send to hop */
  619. if (relay_send_command_from_edge(0, TO_CIRCUIT(circ),
  620. RELAY_COMMAND_EXTEND,
  621. payload, payload_len, hop->prev) < 0)
  622. return 0; /* circuit is closed */
  623. hop->state = CPATH_STATE_AWAITING_KEYS;
  624. }
  625. return 0;
  626. }
  627. /** Our clock just jumped by <b>seconds_elapsed</b>. Assume
  628. * something has also gone wrong with our network: notify the user,
  629. * and abandon all not-yet-used circuits. */
  630. void
  631. circuit_note_clock_jumped(int seconds_elapsed)
  632. {
  633. int severity = server_mode(get_options()) ? LOG_WARN : LOG_NOTICE;
  634. log(severity, LD_GENERAL, "Your system clock just jumped %d seconds %s; "
  635. "assuming established circuits no longer work.",
  636. seconds_elapsed >=0 ? seconds_elapsed : -seconds_elapsed,
  637. seconds_elapsed >=0 ? "forward" : "backward");
  638. control_event_general_status(LOG_WARN, "CLOCK_JUMPED TIME=%d",
  639. seconds_elapsed);
  640. has_completed_circuit=0; /* so it'll log when it works again */
  641. control_event_client_status(severity, "CIRCUIT_NOT_ESTABLISHED REASON=%s",
  642. "CLOCK_JUMPED");
  643. circuit_mark_all_unused_circs();
  644. circuit_expire_all_dirty_circs();
  645. }
  646. /** Take the 'extend' cell, pull out addr/port plus the onion skin. Make
  647. * sure we're connected to the next hop, and pass it the onion skin using
  648. * a create cell. Return -1 if we want to warn and tear down the circuit,
  649. * else return 0.
  650. */
  651. int
  652. circuit_extend(cell_t *cell, circuit_t *circ)
  653. {
  654. or_connection_t *n_conn;
  655. relay_header_t rh;
  656. char *onionskin;
  657. char *id_digest=NULL;
  658. if (circ->n_conn) {
  659. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  660. "n_conn already set. Bug/attack. Closing.");
  661. return -1;
  662. }
  663. if (!server_mode(get_options())) {
  664. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  665. "Got an extend cell, but running as a client. Closing.");
  666. return -1;
  667. }
  668. relay_header_unpack(&rh, cell->payload);
  669. if (rh.length < 4+2+ONIONSKIN_CHALLENGE_LEN+DIGEST_LEN) {
  670. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  671. "Wrong length %d on extend cell. Closing circuit.",
  672. rh.length);
  673. return -1;
  674. }
  675. circ->n_addr = ntohl(get_uint32(cell->payload+RELAY_HEADER_SIZE));
  676. circ->n_port = ntohs(get_uint16(cell->payload+RELAY_HEADER_SIZE+4));
  677. onionskin = cell->payload+RELAY_HEADER_SIZE+4+2;
  678. id_digest = cell->payload+RELAY_HEADER_SIZE+4+2+ONIONSKIN_CHALLENGE_LEN;
  679. n_conn = connection_or_get_by_identity_digest(id_digest);
  680. /* If we don't have an open conn, or the conn we have is obsolete
  681. * (i.e. old or broken) and the other side will let us make a second
  682. * connection without dropping it immediately... */
  683. if (!n_conn || n_conn->_base.state != OR_CONN_STATE_OPEN ||
  684. (n_conn->_base.or_is_obsolete &&
  685. router_digest_version_as_new_as(id_digest,"0.1.1.9-alpha-cvs"))) {
  686. struct in_addr in;
  687. char tmpbuf[INET_NTOA_BUF_LEN];
  688. in.s_addr = htonl(circ->n_addr);
  689. tor_inet_ntoa(&in,tmpbuf,sizeof(tmpbuf));
  690. log_info(LD_CIRC|LD_OR,"Next router (%s:%d) not connected. Connecting.",
  691. tmpbuf, circ->n_port);
  692. circ->n_conn_onionskin = tor_malloc(ONIONSKIN_CHALLENGE_LEN);
  693. memcpy(circ->n_conn_onionskin, onionskin, ONIONSKIN_CHALLENGE_LEN);
  694. circuit_set_state(circ, CIRCUIT_STATE_OR_WAIT);
  695. /* imprint the circuit with its future n_conn->id */
  696. memcpy(circ->n_conn_id_digest, id_digest, DIGEST_LEN);
  697. if (n_conn && !n_conn->_base.or_is_obsolete) {
  698. circ->n_addr = n_conn->_base.addr;
  699. circ->n_port = n_conn->_base.port;
  700. } else {
  701. /* we should try to open a connection */
  702. n_conn = connection_or_connect(circ->n_addr, circ->n_port, id_digest);
  703. if (!n_conn) {
  704. log_info(LD_CIRC,"Launching n_conn failed. Closing circuit.");
  705. circuit_mark_for_close(circ, END_CIRC_REASON_CONNECTFAILED);
  706. return 0;
  707. }
  708. log_debug(LD_CIRC,"connecting in progress (or finished). Good.");
  709. }
  710. /* return success. The onion/circuit/etc will be taken care of
  711. * automatically (may already have been) whenever n_conn reaches
  712. * OR_CONN_STATE_OPEN.
  713. */
  714. return 0;
  715. }
  716. /* these may be different if the router connected to us from elsewhere */
  717. circ->n_addr = n_conn->_base.addr;
  718. circ->n_port = n_conn->_base.port;
  719. circ->n_conn = n_conn;
  720. memcpy(circ->n_conn_id_digest, n_conn->identity_digest, DIGEST_LEN);
  721. log_debug(LD_CIRC,"n_conn is %s:%u",
  722. n_conn->_base.address,n_conn->_base.port);
  723. if (circuit_deliver_create_cell(circ, CELL_CREATE, onionskin) < 0)
  724. return -1;
  725. return 0;
  726. }
  727. /** Initialize cpath-\>{f|b}_{crypto|digest} from the key material in
  728. * key_data. key_data must contain CPATH_KEY_MATERIAL bytes, which are
  729. * used as follows:
  730. * - 20 to initialize f_digest
  731. * - 20 to initialize b_digest
  732. * - 16 to key f_crypto
  733. * - 16 to key b_crypto
  734. *
  735. * (If 'reverse' is true, then f_XX and b_XX are swapped.)
  736. */
  737. int
  738. circuit_init_cpath_crypto(crypt_path_t *cpath, const char *key_data,
  739. int reverse)
  740. {
  741. crypto_digest_env_t *tmp_digest;
  742. crypto_cipher_env_t *tmp_crypto;
  743. tor_assert(cpath);
  744. tor_assert(key_data);
  745. tor_assert(!(cpath->f_crypto || cpath->b_crypto ||
  746. cpath->f_digest || cpath->b_digest));
  747. cpath->f_digest = crypto_new_digest_env();
  748. crypto_digest_add_bytes(cpath->f_digest, key_data, DIGEST_LEN);
  749. cpath->b_digest = crypto_new_digest_env();
  750. crypto_digest_add_bytes(cpath->b_digest, key_data+DIGEST_LEN, DIGEST_LEN);
  751. if (!(cpath->f_crypto =
  752. crypto_create_init_cipher(key_data+(2*DIGEST_LEN),1))) {
  753. log_warn(LD_BUG,"Forward cipher initialization failed.");
  754. return -1;
  755. }
  756. if (!(cpath->b_crypto =
  757. crypto_create_init_cipher(key_data+(2*DIGEST_LEN)+CIPHER_KEY_LEN,0))) {
  758. log_warn(LD_BUG,"Backward cipher initialization failed.");
  759. return -1;
  760. }
  761. if (reverse) {
  762. tmp_digest = cpath->f_digest;
  763. cpath->f_digest = cpath->b_digest;
  764. cpath->b_digest = tmp_digest;
  765. tmp_crypto = cpath->f_crypto;
  766. cpath->f_crypto = cpath->b_crypto;
  767. cpath->b_crypto = tmp_crypto;
  768. }
  769. return 0;
  770. }
  771. /** A created or extended cell came back to us on the circuit, and it included
  772. * <b>reply</b> as its body. (If <b>reply_type</b> is CELL_CREATED, the body
  773. * contains (the second DH key, plus KH). If <b>reply_type</b> is
  774. * CELL_CREATED_FAST, the body contains a secret y and a hash H(x|y).)
  775. *
  776. * Calculate the appropriate keys and digests, make sure KH is
  777. * correct, and initialize this hop of the cpath.
  778. *
  779. * Return - reason if we want to mark circ for close, else return 0.
  780. */
  781. int
  782. circuit_finish_handshake(origin_circuit_t *circ, uint8_t reply_type,
  783. const char *reply)
  784. {
  785. char keys[CPATH_KEY_MATERIAL_LEN];
  786. crypt_path_t *hop;
  787. if (circ->cpath->state == CPATH_STATE_AWAITING_KEYS)
  788. hop = circ->cpath;
  789. else {
  790. hop = onion_next_hop_in_cpath(circ->cpath);
  791. if (!hop) { /* got an extended when we're all done? */
  792. log_warn(LD_PROTOCOL,"got extended when circ already built? Closing.");
  793. return - END_CIRC_REASON_TORPROTOCOL;
  794. }
  795. }
  796. tor_assert(hop->state == CPATH_STATE_AWAITING_KEYS);
  797. if (reply_type == CELL_CREATED && hop->dh_handshake_state) {
  798. if (onion_skin_client_handshake(hop->dh_handshake_state, reply, keys,
  799. DIGEST_LEN*2+CIPHER_KEY_LEN*2) < 0) {
  800. log_warn(LD_CIRC,"onion_skin_client_handshake failed.");
  801. return -END_CIRC_REASON_TORPROTOCOL;
  802. }
  803. /* Remember hash of g^xy */
  804. memcpy(hop->handshake_digest, reply+DH_KEY_LEN, DIGEST_LEN);
  805. } else if (reply_type == CELL_CREATED_FAST && !hop->dh_handshake_state) {
  806. if (fast_client_handshake(hop->fast_handshake_state, reply, keys,
  807. DIGEST_LEN*2+CIPHER_KEY_LEN*2) < 0) {
  808. log_warn(LD_CIRC,"fast_client_handshake failed.");
  809. return -END_CIRC_REASON_TORPROTOCOL;
  810. }
  811. memcpy(hop->handshake_digest, reply+DIGEST_LEN, DIGEST_LEN);
  812. } else {
  813. log_warn(LD_PROTOCOL,"CREATED cell type did not match CREATE cell type.");
  814. return -END_CIRC_REASON_TORPROTOCOL;
  815. }
  816. if (hop->dh_handshake_state) {
  817. crypto_dh_free(hop->dh_handshake_state); /* don't need it anymore */
  818. hop->dh_handshake_state = NULL;
  819. }
  820. memset(hop->fast_handshake_state, 0, sizeof(hop->fast_handshake_state));
  821. if (circuit_init_cpath_crypto(hop, keys, 0)<0) {
  822. return -END_CIRC_REASON_TORPROTOCOL;
  823. }
  824. hop->state = CPATH_STATE_OPEN;
  825. log_info(LD_CIRC,"Finished building %scircuit hop:",
  826. (reply_type == CELL_CREATED_FAST) ? "fast " : "");
  827. circuit_log_path(LOG_INFO,LD_CIRC,circ);
  828. control_event_circuit_status(circ, CIRC_EVENT_EXTENDED, 0);
  829. return 0;
  830. }
  831. /** We received a relay truncated cell on circ.
  832. *
  833. * Since we don't ask for truncates currently, getting a truncated
  834. * means that a connection broke or an extend failed. For now,
  835. * just give up: for circ to close, and return 0.
  836. */
  837. int
  838. circuit_truncated(origin_circuit_t *circ, crypt_path_t *layer)
  839. {
  840. // crypt_path_t *victim;
  841. // connection_t *stream;
  842. tor_assert(circ);
  843. tor_assert(layer);
  844. /* XXX Since we don't ask for truncates currently, getting a truncated
  845. * means that a connection broke or an extend failed. For now,
  846. * just give up.
  847. */
  848. circuit_mark_for_close(TO_CIRCUIT(circ),
  849. END_CIRC_REASON_FLAG_REMOTE|END_CIRC_REASON_OR_CONN_CLOSED);
  850. return 0;
  851. #if 0
  852. while (layer->next != circ->cpath) {
  853. /* we need to clear out layer->next */
  854. victim = layer->next;
  855. log_debug(LD_CIRC, "Killing a layer of the cpath.");
  856. for (stream = circ->p_streams; stream; stream=stream->next_stream) {
  857. if (stream->cpath_layer == victim) {
  858. log_info(LD_APP, "Marking stream %d for close because of truncate.",
  859. stream->stream_id);
  860. /* no need to send 'end' relay cells,
  861. * because the other side's already dead
  862. */
  863. connection_mark_unattached_ap(stream, END_STREAM_REASON_DESTROY);
  864. }
  865. }
  866. layer->next = victim->next;
  867. circuit_free_cpath_node(victim);
  868. }
  869. log_info(LD_CIRC, "finished");
  870. return 0;
  871. #endif
  872. }
  873. /** Given a response payload and keys, initialize, then send a created
  874. * cell back.
  875. */
  876. int
  877. onionskin_answer(or_circuit_t *circ, uint8_t cell_type, const char *payload,
  878. const char *keys)
  879. {
  880. cell_t cell;
  881. crypt_path_t *tmp_cpath;
  882. tmp_cpath = tor_malloc_zero(sizeof(crypt_path_t));
  883. tmp_cpath->magic = CRYPT_PATH_MAGIC;
  884. memset(&cell, 0, sizeof(cell_t));
  885. cell.command = cell_type;
  886. cell.circ_id = circ->p_circ_id;
  887. circuit_set_state(TO_CIRCUIT(circ), CIRCUIT_STATE_OPEN);
  888. memcpy(cell.payload, payload,
  889. cell_type == CELL_CREATED ? ONIONSKIN_REPLY_LEN : DIGEST_LEN*2);
  890. log_debug(LD_CIRC,"init digest forward 0x%.8x, backward 0x%.8x.",
  891. (unsigned int)*(uint32_t*)(keys),
  892. (unsigned int)*(uint32_t*)(keys+20));
  893. if (circuit_init_cpath_crypto(tmp_cpath, keys, 0)<0) {
  894. log_warn(LD_BUG,"Circuit initialization failed");
  895. tor_free(tmp_cpath);
  896. return -1;
  897. }
  898. circ->n_digest = tmp_cpath->f_digest;
  899. circ->n_crypto = tmp_cpath->f_crypto;
  900. circ->p_digest = tmp_cpath->b_digest;
  901. circ->p_crypto = tmp_cpath->b_crypto;
  902. tmp_cpath->magic = 0;
  903. tor_free(tmp_cpath);
  904. if (cell_type == CELL_CREATED)
  905. memcpy(circ->handshake_digest, cell.payload+DH_KEY_LEN, DIGEST_LEN);
  906. else
  907. memcpy(circ->handshake_digest, cell.payload+DIGEST_LEN, DIGEST_LEN);
  908. circ->is_first_hop = (cell_type == CELL_CREATED_FAST);
  909. append_cell_to_circuit_queue(TO_CIRCUIT(circ),
  910. circ->p_conn, &cell, CELL_DIRECTION_IN);
  911. log_debug(LD_CIRC,"Finished sending 'created' cell.");
  912. if (!is_local_IP(circ->p_conn->_base.addr) &&
  913. !connection_or_nonopen_was_started_here(circ->p_conn)) {
  914. /* record that we could process create cells from a non-local conn
  915. * that we didn't initiate; presumably this means that create cells
  916. * can reach us too. */
  917. router_orport_found_reachable();
  918. }
  919. return 0;
  920. }
  921. /** Choose a length for a circuit of purpose <b>purpose</b>.
  922. * Default length is 3 + the number of endpoints that would give something
  923. * away. If the routerlist <b>routers</b> doesn't have enough routers
  924. * to handle the desired path length, return as large a path length as
  925. * is feasible, except if it's less than 2, in which case return -1.
  926. */
  927. static int
  928. new_route_len(uint8_t purpose, extend_info_t *exit,
  929. smartlist_t *routers)
  930. {
  931. int num_acceptable_routers;
  932. int routelen;
  933. tor_assert(routers);
  934. #ifdef TOR_PERF
  935. routelen = 2;
  936. #else
  937. routelen = 3;
  938. if (exit &&
  939. purpose != CIRCUIT_PURPOSE_TESTING &&
  940. purpose != CIRCUIT_PURPOSE_S_ESTABLISH_INTRO)
  941. routelen++;
  942. #endif
  943. log_debug(LD_CIRC,"Chosen route length %d (%d routers available).",
  944. routelen, smartlist_len(routers));
  945. num_acceptable_routers = count_acceptable_routers(routers);
  946. if (num_acceptable_routers < 2) {
  947. log_info(LD_CIRC,
  948. "Not enough acceptable routers (%d). Discarding this circuit.",
  949. num_acceptable_routers);
  950. return -1;
  951. }
  952. if (num_acceptable_routers < routelen) {
  953. log_info(LD_CIRC,"Not enough routers: cutting routelen from %d to %d.",
  954. routelen, num_acceptable_routers);
  955. routelen = num_acceptable_routers;
  956. }
  957. return routelen;
  958. }
  959. /** Fetch the list of predicted ports, dup it into a smartlist of
  960. * uint16_t's, remove the ones that are already handled by an
  961. * existing circuit, and return it.
  962. */
  963. static smartlist_t *
  964. circuit_get_unhandled_ports(time_t now)
  965. {
  966. smartlist_t *source = rep_hist_get_predicted_ports(now);
  967. smartlist_t *dest = smartlist_create();
  968. uint16_t *tmp;
  969. int i;
  970. for (i = 0; i < smartlist_len(source); ++i) {
  971. tmp = tor_malloc(sizeof(uint16_t));
  972. memcpy(tmp, smartlist_get(source, i), sizeof(uint16_t));
  973. smartlist_add(dest, tmp);
  974. }
  975. circuit_remove_handled_ports(dest);
  976. return dest;
  977. }
  978. /** Return 1 if we already have circuits present or on the way for
  979. * all anticipated ports. Return 0 if we should make more.
  980. *
  981. * If we're returning 0, set need_uptime and need_capacity to
  982. * indicate any requirements that the unhandled ports have.
  983. */
  984. int
  985. circuit_all_predicted_ports_handled(time_t now, int *need_uptime,
  986. int *need_capacity)
  987. {
  988. int i, enough;
  989. uint16_t *port;
  990. smartlist_t *sl = circuit_get_unhandled_ports(now);
  991. smartlist_t *LongLivedServices = get_options()->LongLivedPorts;
  992. tor_assert(need_uptime);
  993. tor_assert(need_capacity);
  994. enough = (smartlist_len(sl) == 0);
  995. for (i = 0; i < smartlist_len(sl); ++i) {
  996. port = smartlist_get(sl, i);
  997. if (smartlist_string_num_isin(LongLivedServices, *port))
  998. *need_uptime = 1;
  999. tor_free(port);
  1000. }
  1001. smartlist_free(sl);
  1002. return enough;
  1003. }
  1004. /** Return 1 if <b>router</b> can handle one or more of the ports in
  1005. * <b>needed_ports</b>, else return 0.
  1006. */
  1007. static int
  1008. router_handles_some_port(routerinfo_t *router, smartlist_t *needed_ports)
  1009. {
  1010. int i;
  1011. uint16_t port;
  1012. for (i = 0; i < smartlist_len(needed_ports); ++i) {
  1013. addr_policy_result_t r;
  1014. port = *(uint16_t *)smartlist_get(needed_ports, i);
  1015. tor_assert(port);
  1016. r = compare_addr_to_addr_policy(0, port, router->exit_policy);
  1017. if (r != ADDR_POLICY_REJECTED && r != ADDR_POLICY_PROBABLY_REJECTED)
  1018. return 1;
  1019. }
  1020. return 0;
  1021. }
  1022. /** Return true iff <b>conn</b> needs another general circuit to be
  1023. * built. */
  1024. static int
  1025. ap_stream_wants_exit_attention(connection_t *conn)
  1026. {
  1027. if (conn->type == CONN_TYPE_AP &&
  1028. conn->state == AP_CONN_STATE_CIRCUIT_WAIT &&
  1029. !conn->marked_for_close &&
  1030. !connection_edge_is_rendezvous_stream(TO_EDGE_CONN(conn)) &&
  1031. !circuit_stream_is_being_handled(TO_EDGE_CONN(conn), 0,
  1032. MIN_CIRCUITS_HANDLING_STREAM))
  1033. return 1;
  1034. return 0;
  1035. }
  1036. /** Return a pointer to a suitable router to be the exit node for the
  1037. * general-purpose circuit we're about to build.
  1038. *
  1039. * Look through the connection array, and choose a router that maximizes
  1040. * the number of pending streams that can exit from this router.
  1041. *
  1042. * Return NULL if we can't find any suitable routers.
  1043. */
  1044. static routerinfo_t *
  1045. choose_good_exit_server_general(routerlist_t *dir, int need_uptime,
  1046. int need_capacity)
  1047. {
  1048. int *n_supported;
  1049. int i;
  1050. int n_pending_connections = 0;
  1051. smartlist_t *connections;
  1052. int best_support = -1;
  1053. int n_best_support=0;
  1054. smartlist_t *sl, *preferredexits, *excludedexits;
  1055. routerinfo_t *router;
  1056. or_options_t *options = get_options();
  1057. connections = get_connection_array();
  1058. /* Count how many connections are waiting for a circuit to be built.
  1059. * We use this for log messages now, but in the future we may depend on it.
  1060. */
  1061. SMARTLIST_FOREACH(connections, connection_t *, conn,
  1062. {
  1063. if (ap_stream_wants_exit_attention(conn))
  1064. ++n_pending_connections;
  1065. });
  1066. // log_fn(LOG_DEBUG, "Choosing exit node; %d connections are pending",
  1067. // n_pending_connections);
  1068. /* Now we count, for each of the routers in the directory, how many
  1069. * of the pending connections could possibly exit from that
  1070. * router (n_supported[i]). (We can't be sure about cases where we
  1071. * don't know the IP address of the pending connection.)
  1072. */
  1073. n_supported = tor_malloc(sizeof(int)*smartlist_len(dir->routers));
  1074. for (i = 0; i < smartlist_len(dir->routers); ++i) {/* iterate over routers */
  1075. router = smartlist_get(dir->routers, i);
  1076. if (router_is_me(router)) {
  1077. n_supported[i] = -1;
  1078. // log_fn(LOG_DEBUG,"Skipping node %s -- it's me.", router->nickname);
  1079. /* XXX there's probably a reverse predecessor attack here, but
  1080. * it's slow. should we take this out? -RD
  1081. */
  1082. continue;
  1083. }
  1084. if (!router->is_running || router->is_bad_exit) {
  1085. n_supported[i] = -1;
  1086. continue; /* skip routers that are known to be down or bad exits */
  1087. }
  1088. if (router_is_unreliable(router, need_uptime, need_capacity, 0)) {
  1089. n_supported[i] = -1;
  1090. continue; /* skip routers that are not suitable */
  1091. }
  1092. if (!(router->is_valid || options->_AllowInvalid & ALLOW_INVALID_EXIT)) {
  1093. /* if it's invalid and we don't want it */
  1094. n_supported[i] = -1;
  1095. // log_fn(LOG_DEBUG,"Skipping node %s (index %d) -- invalid router.",
  1096. // router->nickname, i);
  1097. continue; /* skip invalid routers */
  1098. }
  1099. if (router_exit_policy_rejects_all(router)) {
  1100. n_supported[i] = -1;
  1101. // log_fn(LOG_DEBUG,"Skipping node %s (index %d) -- it rejects all.",
  1102. // router->nickname, i);
  1103. continue; /* skip routers that reject all */
  1104. }
  1105. n_supported[i] = 0;
  1106. /* iterate over connections */
  1107. SMARTLIST_FOREACH(connections, connection_t *, conn,
  1108. {
  1109. if (!ap_stream_wants_exit_attention(conn))
  1110. continue; /* Skip everything but APs in CIRCUIT_WAIT */
  1111. if (connection_ap_can_use_exit(TO_EDGE_CONN(conn), router)) {
  1112. ++n_supported[i];
  1113. // log_fn(LOG_DEBUG,"%s is supported. n_supported[%d] now %d.",
  1114. // router->nickname, i, n_supported[i]);
  1115. } else {
  1116. // log_fn(LOG_DEBUG,"%s (index %d) would reject this stream.",
  1117. // router->nickname, i);
  1118. }
  1119. }); /* End looping over connections. */
  1120. if (n_supported[i] > best_support) {
  1121. /* If this router is better than previous ones, remember its index
  1122. * and goodness, and start counting how many routers are this good. */
  1123. best_support = n_supported[i]; n_best_support=1;
  1124. // log_fn(LOG_DEBUG,"%s is new best supported option so far.",
  1125. // router->nickname);
  1126. } else if (n_supported[i] == best_support) {
  1127. /* If this router is _as good_ as the best one, just increment the
  1128. * count of equally good routers.*/
  1129. ++n_best_support;
  1130. }
  1131. }
  1132. log_info(LD_CIRC,
  1133. "Found %d servers that might support %d/%d pending connections.",
  1134. n_best_support, best_support >= 0 ? best_support : 0,
  1135. n_pending_connections);
  1136. preferredexits = smartlist_create();
  1137. add_nickname_list_to_smartlist(preferredexits,options->ExitNodes,1);
  1138. excludedexits = smartlist_create();
  1139. add_nickname_list_to_smartlist(excludedexits,options->ExcludeNodes,0);
  1140. sl = smartlist_create();
  1141. /* If any routers definitely support any pending connections, choose one
  1142. * at random. */
  1143. if (best_support > 0) {
  1144. for (i = 0; i < smartlist_len(dir->routers); i++)
  1145. if (n_supported[i] == best_support)
  1146. smartlist_add(sl, smartlist_get(dir->routers, i));
  1147. smartlist_subtract(sl,excludedexits);
  1148. if (options->StrictExitNodes || smartlist_overlap(sl,preferredexits))
  1149. smartlist_intersect(sl,preferredexits);
  1150. router = routerlist_sl_choose_by_bandwidth(sl, WEIGHT_FOR_EXIT);
  1151. } else {
  1152. /* Either there are no pending connections, or no routers even seem to
  1153. * possibly support any of them. Choose a router at random that satisfies
  1154. * at least one predicted exit port. */
  1155. int try;
  1156. smartlist_t *needed_ports;
  1157. if (best_support == -1) {
  1158. if (need_uptime || need_capacity) {
  1159. log_info(LD_CIRC,
  1160. "We couldn't find any live%s%s routers; falling back "
  1161. "to list of all routers.",
  1162. need_capacity?", fast":"",
  1163. need_uptime?", stable":"");
  1164. smartlist_free(preferredexits);
  1165. smartlist_free(excludedexits);
  1166. smartlist_free(sl);
  1167. tor_free(n_supported);
  1168. return choose_good_exit_server_general(dir, 0, 0);
  1169. }
  1170. log_notice(LD_CIRC, "All routers are down or won't exit -- choosing a "
  1171. "doomed exit at random.");
  1172. }
  1173. needed_ports = circuit_get_unhandled_ports(time(NULL));
  1174. for (try = 0; try < 2; try++) {
  1175. /* try once to pick only from routers that satisfy a needed port,
  1176. * then if there are none, pick from any that support exiting. */
  1177. for (i = 0; i < smartlist_len(dir->routers); i++) {
  1178. router = smartlist_get(dir->routers, i);
  1179. if (n_supported[i] != -1 &&
  1180. (try || router_handles_some_port(router, needed_ports))) {
  1181. // log_fn(LOG_DEBUG,"Try %d: '%s' is a possibility.",
  1182. // try, router->nickname);
  1183. smartlist_add(sl, router);
  1184. }
  1185. }
  1186. smartlist_subtract(sl,excludedexits);
  1187. if (options->StrictExitNodes || smartlist_overlap(sl,preferredexits))
  1188. smartlist_intersect(sl,preferredexits);
  1189. /* XXX sometimes the above results in null, when the requested
  1190. * exit node is down. we should pick it anyway. */
  1191. router = routerlist_sl_choose_by_bandwidth(sl, WEIGHT_FOR_EXIT);
  1192. if (router)
  1193. break;
  1194. }
  1195. SMARTLIST_FOREACH(needed_ports, uint16_t *, cp, tor_free(cp));
  1196. smartlist_free(needed_ports);
  1197. }
  1198. smartlist_free(preferredexits);
  1199. smartlist_free(excludedexits);
  1200. smartlist_free(sl);
  1201. tor_free(n_supported);
  1202. if (router) {
  1203. log_info(LD_CIRC, "Chose exit server '%s'", router->nickname);
  1204. return router;
  1205. }
  1206. if (options->StrictExitNodes) {
  1207. log_warn(LD_CIRC,
  1208. "No specified exit routers seem to be running, and "
  1209. "StrictExitNodes is set: can't choose an exit.");
  1210. }
  1211. return NULL;
  1212. }
  1213. /** Return a pointer to a suitable router to be the exit node for the
  1214. * circuit of purpose <b>purpose</b> that we're about to build (or NULL
  1215. * if no router is suitable).
  1216. *
  1217. * For general-purpose circuits, pass it off to
  1218. * choose_good_exit_server_general()
  1219. *
  1220. * For client-side rendezvous circuits, choose a random node, weighted
  1221. * toward the preferences in 'options'.
  1222. */
  1223. static routerinfo_t *
  1224. choose_good_exit_server(uint8_t purpose, routerlist_t *dir,
  1225. int need_uptime, int need_capacity, int is_internal)
  1226. {
  1227. or_options_t *options = get_options();
  1228. switch (purpose) {
  1229. case CIRCUIT_PURPOSE_C_GENERAL:
  1230. if (is_internal) /* pick it like a middle hop */
  1231. return router_choose_random_node(NULL, get_options()->ExcludeNodes,
  1232. NULL, need_uptime, need_capacity, 0,
  1233. get_options()->_AllowInvalid & ALLOW_INVALID_MIDDLE, 0, 0);
  1234. else
  1235. return choose_good_exit_server_general(dir,need_uptime,need_capacity);
  1236. case CIRCUIT_PURPOSE_C_ESTABLISH_REND:
  1237. return router_choose_random_node(
  1238. options->RendNodes, options->RendExcludeNodes,
  1239. NULL, need_uptime, need_capacity, 0,
  1240. options->_AllowInvalid & ALLOW_INVALID_RENDEZVOUS, 0, 0);
  1241. }
  1242. log_warn(LD_BUG,"Unhandled purpose %d", purpose);
  1243. tor_fragile_assert();
  1244. return NULL;
  1245. }
  1246. /** Decide a suitable length for circ's cpath, and pick an exit
  1247. * router (or use <b>exit</b> if provided). Store these in the
  1248. * cpath. Return 0 if ok, -1 if circuit should be closed. */
  1249. static int
  1250. onion_pick_cpath_exit(origin_circuit_t *circ, extend_info_t *exit)
  1251. {
  1252. cpath_build_state_t *state = circ->build_state;
  1253. routerlist_t *rl = router_get_routerlist();
  1254. if (state->onehop_tunnel) {
  1255. log_debug(LD_CIRC, "Launching a one-hop circuit for dir tunnel.");
  1256. state->desired_path_len = 1;
  1257. } else {
  1258. int r = new_route_len(circ->_base.purpose, exit, rl->routers);
  1259. if (r < 1) /* must be at least 1 */
  1260. return -1;
  1261. state->desired_path_len = r;
  1262. }
  1263. if (exit) { /* the circuit-builder pre-requested one */
  1264. log_info(LD_CIRC,"Using requested exit node '%s'", exit->nickname);
  1265. exit = extend_info_dup(exit);
  1266. } else { /* we have to decide one */
  1267. routerinfo_t *router =
  1268. choose_good_exit_server(circ->_base.purpose, rl, state->need_uptime,
  1269. state->need_capacity, state->is_internal);
  1270. if (!router) {
  1271. log_warn(LD_CIRC,"failed to choose an exit server");
  1272. return -1;
  1273. }
  1274. exit = extend_info_from_router(router);
  1275. }
  1276. state->chosen_exit = exit;
  1277. return 0;
  1278. }
  1279. /** Give <b>circ</b> a new exit destination to <b>exit</b>, and add a
  1280. * hop to the cpath reflecting this. Don't send the next extend cell --
  1281. * the caller will do this if it wants to.
  1282. */
  1283. int
  1284. circuit_append_new_exit(origin_circuit_t *circ, extend_info_t *exit)
  1285. {
  1286. cpath_build_state_t *state;
  1287. tor_assert(exit);
  1288. tor_assert(circ);
  1289. state = circ->build_state;
  1290. tor_assert(state);
  1291. if (state->chosen_exit)
  1292. extend_info_free(state->chosen_exit);
  1293. state->chosen_exit = extend_info_dup(exit);
  1294. ++circ->build_state->desired_path_len;
  1295. onion_append_hop(&circ->cpath, exit);
  1296. return 0;
  1297. }
  1298. /** Take an open <b>circ</b>, and add a new hop at the end, based on
  1299. * <b>info</b>. Set its state back to CIRCUIT_STATE_BUILDING, and then
  1300. * send the next extend cell to begin connecting to that hop.
  1301. */
  1302. int
  1303. circuit_extend_to_new_exit(origin_circuit_t *circ, extend_info_t *exit)
  1304. {
  1305. int err_reason = 0;
  1306. circuit_append_new_exit(circ, exit);
  1307. circuit_set_state(TO_CIRCUIT(circ), CIRCUIT_STATE_BUILDING);
  1308. if ((err_reason = circuit_send_next_onion_skin(circ))<0) {
  1309. log_warn(LD_CIRC, "Couldn't extend circuit to new point '%s'.",
  1310. exit->nickname);
  1311. circuit_mark_for_close(TO_CIRCUIT(circ), -err_reason);
  1312. return -1;
  1313. }
  1314. return 0;
  1315. }
  1316. /** Return the number of routers in <b>routers</b> that are currently up
  1317. * and available for building circuits through.
  1318. */
  1319. static int
  1320. count_acceptable_routers(smartlist_t *routers)
  1321. {
  1322. int i, n;
  1323. int num=0;
  1324. routerinfo_t *r;
  1325. n = smartlist_len(routers);
  1326. for (i=0;i<n;i++) {
  1327. r = smartlist_get(routers, i);
  1328. // log_debug(LD_CIRC,
  1329. // "Contemplating whether router %d (%s) is a new option.",
  1330. // i, r->nickname);
  1331. if (r->is_running == 0) {
  1332. // log_debug(LD_CIRC,"Nope, the directory says %d is not running.",i);
  1333. goto next_i_loop;
  1334. }
  1335. if (r->is_valid == 0) {
  1336. // log_debug(LD_CIRC,"Nope, the directory says %d is not valid.",i);
  1337. goto next_i_loop;
  1338. /* XXX This clause makes us count incorrectly: if AllowInvalidRouters
  1339. * allows this node in some places, then we're getting an inaccurate
  1340. * count. For now, be conservative and don't count it. But later we
  1341. * should try to be smarter. */
  1342. }
  1343. num++;
  1344. // log_debug(LD_CIRC,"I like %d. num_acceptable_routers now %d.",i, num);
  1345. next_i_loop:
  1346. ; /* C requires an explicit statement after the label */
  1347. }
  1348. return num;
  1349. }
  1350. /** Add <b>new_hop</b> to the end of the doubly-linked-list <b>head_ptr</b>.
  1351. * This function is used to extend cpath by another hop.
  1352. */
  1353. void
  1354. onion_append_to_cpath(crypt_path_t **head_ptr, crypt_path_t *new_hop)
  1355. {
  1356. if (*head_ptr) {
  1357. new_hop->next = (*head_ptr);
  1358. new_hop->prev = (*head_ptr)->prev;
  1359. (*head_ptr)->prev->next = new_hop;
  1360. (*head_ptr)->prev = new_hop;
  1361. } else {
  1362. *head_ptr = new_hop;
  1363. new_hop->prev = new_hop->next = new_hop;
  1364. }
  1365. }
  1366. /** Pick a random server digest that's running a Tor version that
  1367. * doesn't have the reachability bug. These are versions 0.1.1.21-cvs+
  1368. * and 0.1.2.1-alpha+. Avoid picking authorities, since we're
  1369. * probably already connected to them.
  1370. *
  1371. * We only return one, so this doesn't become stupid when the
  1372. * whole network has upgraded. */
  1373. static char *
  1374. compute_preferred_testing_list(const char *answer)
  1375. {
  1376. smartlist_t *choices;
  1377. routerlist_t *rl = router_get_routerlist();
  1378. routerinfo_t *router;
  1379. char *s;
  1380. if (answer) /* they have one in mind -- easy */
  1381. return tor_strdup(answer);
  1382. choices = smartlist_create();
  1383. /* now count up our choices */
  1384. SMARTLIST_FOREACH(rl->routers, routerinfo_t *, r,
  1385. if (r->is_running && r->is_valid &&
  1386. ((tor_version_as_new_as(r->platform,"0.1.1.21-cvs") &&
  1387. !tor_version_as_new_as(r->platform,"0.1.2.0-alpha-cvs")) ||
  1388. tor_version_as_new_as(r->platform,"0.1.2.1-alpha")) &&
  1389. !is_local_IP(r->addr) &&
  1390. !router_get_trusteddirserver_by_digest(r->cache_info.identity_digest))
  1391. smartlist_add(choices, r));
  1392. router = smartlist_choose(choices);
  1393. smartlist_free(choices);
  1394. if (!router) {
  1395. log_info(LD_CIRC, "Looking for middle server that doesn't have the "
  1396. "reachability bug, but didn't find one. Oh well.");
  1397. return NULL;
  1398. }
  1399. log_info(LD_CIRC, "Looking for middle server that doesn't have the "
  1400. "reachability bug, and chose '%s'. Great.", router->nickname);
  1401. s = tor_malloc(HEX_DIGEST_LEN+2);
  1402. s[0] = '$';
  1403. base16_encode(s+1, HEX_DIGEST_LEN+1,
  1404. router->cache_info.identity_digest, DIGEST_LEN);
  1405. return s;
  1406. }
  1407. /** A helper function used by onion_extend_cpath(). Use <b>purpose</b>
  1408. * and <b>state</b> and the cpath <b>head</b> (currently populated only
  1409. * to length <b>cur_len</b> to decide a suitable middle hop for a
  1410. * circuit. In particular, make sure we don't pick the exit node or its
  1411. * family, and make sure we don't duplicate any previous nodes or their
  1412. * families. */
  1413. static routerinfo_t *
  1414. choose_good_middle_server(uint8_t purpose,
  1415. cpath_build_state_t *state,
  1416. crypt_path_t *head,
  1417. int cur_len)
  1418. {
  1419. int i;
  1420. routerinfo_t *r, *choice;
  1421. crypt_path_t *cpath;
  1422. smartlist_t *excluded;
  1423. or_options_t *options = get_options();
  1424. char *preferred = NULL;
  1425. tor_assert(_CIRCUIT_PURPOSE_MIN <= purpose &&
  1426. purpose <= _CIRCUIT_PURPOSE_MAX);
  1427. log_debug(LD_CIRC, "Contemplating intermediate hop: random choice.");
  1428. excluded = smartlist_create();
  1429. if ((r = build_state_get_exit_router(state))) {
  1430. smartlist_add(excluded, r);
  1431. routerlist_add_family(excluded, r);
  1432. }
  1433. for (i = 0, cpath = head; i < cur_len; ++i, cpath=cpath->next) {
  1434. if ((r = router_get_by_digest(cpath->extend_info->identity_digest))) {
  1435. smartlist_add(excluded, r);
  1436. routerlist_add_family(excluded, r);
  1437. }
  1438. }
  1439. if (purpose == CIRCUIT_PURPOSE_TESTING)
  1440. preferred = compute_preferred_testing_list(options->TestVia);
  1441. choice = router_choose_random_node(preferred,
  1442. options->ExcludeNodes, excluded,
  1443. state->need_uptime, state->need_capacity, 0,
  1444. options->_AllowInvalid & ALLOW_INVALID_MIDDLE, 0, 0);
  1445. tor_free(preferred);
  1446. smartlist_free(excluded);
  1447. return choice;
  1448. }
  1449. /** Pick a good entry server for the circuit to be built according to
  1450. * <b>state</b>. Don't reuse a chosen exit (if any), don't use this
  1451. * router (if we're an OR), and respect firewall settings; if we're
  1452. * configured to use entry guards, return one.
  1453. *
  1454. * If <b>state</b> is NULL, we're choosing a router to serve as an entry
  1455. * guard, not for any particular circuit.
  1456. */
  1457. static routerinfo_t *
  1458. choose_good_entry_server(uint8_t purpose, cpath_build_state_t *state)
  1459. {
  1460. routerinfo_t *r, *choice;
  1461. smartlist_t *excluded;
  1462. or_options_t *options = get_options();
  1463. (void)purpose; /* not used yet. */
  1464. if (state && options->UseEntryGuards) {
  1465. return choose_random_entry(state);
  1466. }
  1467. excluded = smartlist_create();
  1468. if (state && (r = build_state_get_exit_router(state))) {
  1469. smartlist_add(excluded, r);
  1470. routerlist_add_family(excluded, r);
  1471. }
  1472. if (firewall_is_fascist_or()) {
  1473. /* exclude all ORs that listen on the wrong port */
  1474. routerlist_t *rl = router_get_routerlist();
  1475. int i;
  1476. for (i=0; i < smartlist_len(rl->routers); i++) {
  1477. r = smartlist_get(rl->routers, i);
  1478. if (!fascist_firewall_allows_address_or(r->addr,r->or_port))
  1479. smartlist_add(excluded, r);
  1480. }
  1481. }
  1482. /* and exclude current entry guards, if applicable */
  1483. if (options->UseEntryGuards && entry_guards) {
  1484. SMARTLIST_FOREACH(entry_guards, entry_guard_t *, entry,
  1485. {
  1486. if ((r = router_get_by_digest(entry->identity)))
  1487. smartlist_add(excluded, r);
  1488. });
  1489. }
  1490. choice = router_choose_random_node(
  1491. NULL, options->ExcludeNodes,
  1492. excluded, state ? state->need_uptime : 0,
  1493. state ? state->need_capacity : 0,
  1494. state ? 0 : 1,
  1495. options->_AllowInvalid & ALLOW_INVALID_ENTRY, 0, 0);
  1496. smartlist_free(excluded);
  1497. return choice;
  1498. }
  1499. /** Return the first non-open hop in cpath, or return NULL if all
  1500. * hops are open. */
  1501. static crypt_path_t *
  1502. onion_next_hop_in_cpath(crypt_path_t *cpath)
  1503. {
  1504. crypt_path_t *hop = cpath;
  1505. do {
  1506. if (hop->state != CPATH_STATE_OPEN)
  1507. return hop;
  1508. hop = hop->next;
  1509. } while (hop != cpath);
  1510. return NULL;
  1511. }
  1512. /** Choose a suitable next hop in the cpath <b>head_ptr</b>,
  1513. * based on <b>state</b>. Append the hop info to head_ptr.
  1514. */
  1515. static int
  1516. onion_extend_cpath(origin_circuit_t *circ)
  1517. {
  1518. uint8_t purpose = circ->_base.purpose;
  1519. cpath_build_state_t *state = circ->build_state;
  1520. int cur_len = circuit_get_cpath_len(circ);
  1521. extend_info_t *info = NULL;
  1522. if (cur_len >= state->desired_path_len) {
  1523. log_debug(LD_CIRC, "Path is complete: %d steps long",
  1524. state->desired_path_len);
  1525. return 1;
  1526. }
  1527. log_debug(LD_CIRC, "Path is %d long; we want %d", cur_len,
  1528. state->desired_path_len);
  1529. if (cur_len == state->desired_path_len - 1) { /* Picking last node */
  1530. info = extend_info_dup(state->chosen_exit);
  1531. } else if (cur_len == 0) { /* picking first node */
  1532. routerinfo_t *r = choose_good_entry_server(purpose, state);
  1533. if (r)
  1534. info = extend_info_from_router(r);
  1535. } else {
  1536. routerinfo_t *r =
  1537. choose_good_middle_server(purpose, state, circ->cpath, cur_len);
  1538. if (r)
  1539. info = extend_info_from_router(r);
  1540. }
  1541. if (!info) {
  1542. log_warn(LD_CIRC,"Failed to find node for hop %d of our path. Discarding "
  1543. "this circuit.", cur_len);
  1544. return -1;
  1545. }
  1546. log_debug(LD_CIRC,"Chose router %s for hop %d (exit is %s)",
  1547. info->nickname, cur_len+1, build_state_get_exit_nickname(state));
  1548. onion_append_hop(&circ->cpath, info);
  1549. extend_info_free(info);
  1550. return 0;
  1551. }
  1552. /** Create a new hop, annotate it with information about its
  1553. * corresponding router <b>choice</b>, and append it to the
  1554. * end of the cpath <b>head_ptr</b>. */
  1555. static int
  1556. onion_append_hop(crypt_path_t **head_ptr, extend_info_t *choice)
  1557. {
  1558. crypt_path_t *hop = tor_malloc_zero(sizeof(crypt_path_t));
  1559. /* link hop into the cpath, at the end. */
  1560. onion_append_to_cpath(head_ptr, hop);
  1561. hop->magic = CRYPT_PATH_MAGIC;
  1562. hop->state = CPATH_STATE_CLOSED;
  1563. hop->extend_info = extend_info_dup(choice);
  1564. hop->package_window = CIRCWINDOW_START;
  1565. hop->deliver_window = CIRCWINDOW_START;
  1566. return 0;
  1567. }
  1568. /** Allocate a new extend_info object based on the various arguments. */
  1569. extend_info_t *
  1570. extend_info_alloc(const char *nickname, const char *digest,
  1571. crypto_pk_env_t *onion_key,
  1572. uint32_t addr, uint16_t port)
  1573. {
  1574. extend_info_t *info = tor_malloc_zero(sizeof(extend_info_t));
  1575. memcpy(info->identity_digest, digest, DIGEST_LEN);
  1576. if (nickname)
  1577. strlcpy(info->nickname, nickname, sizeof(info->nickname));
  1578. if (onion_key)
  1579. info->onion_key = crypto_pk_dup_key(onion_key);
  1580. info->addr = addr;
  1581. info->port = port;
  1582. return info;
  1583. }
  1584. /** Allocate and return a new extend_info_t that can be used to build a
  1585. * circuit to or through the router <b>r</b>. */
  1586. extend_info_t *
  1587. extend_info_from_router(routerinfo_t *r)
  1588. {
  1589. tor_assert(r);
  1590. return extend_info_alloc(r->nickname, r->cache_info.identity_digest,
  1591. r->onion_pkey, r->addr, r->or_port);
  1592. }
  1593. #if 0
  1594. /** What router purpose is <b>digest</b>?
  1595. * It's a general purpose router unless it's on our bridges list.
  1596. */
  1597. static uint8_t
  1598. get_router_purpose_from_digest(char *digest)
  1599. {
  1600. if (digest_is_a_bridge(digest))
  1601. return ROUTER_PURPOSE_BRIDGE;
  1602. return ROUTER_PURPOSE_GENERAL;
  1603. }
  1604. #endif
  1605. #if 0
  1606. /** Allocate and return a new extend_info_t that can be used to build a
  1607. * circuit to or through the router <b>r</b>. */
  1608. extend_info_t *
  1609. extend_info_from_routerstatus(routerstatus_t *s)
  1610. {
  1611. tor_assert(s);
  1612. /* routerstatus doesn't know onion_key; leave it NULL */
  1613. return extend_info_alloc(s->nickname, s->identity_digest,
  1614. NULL, s->addr, s->or_port);
  1615. // get_router_purpose_from_digest(s->identity_digest));
  1616. }
  1617. #endif
  1618. /** Release storage held by an extend_info_t struct. */
  1619. void
  1620. extend_info_free(extend_info_t *info)
  1621. {
  1622. tor_assert(info);
  1623. if (info->onion_key)
  1624. crypto_free_pk_env(info->onion_key);
  1625. tor_free(info);
  1626. }
  1627. /** Allocate and return a new extend_info_t with the same contents as
  1628. * <b>info</b>. */
  1629. extend_info_t *
  1630. extend_info_dup(extend_info_t *info)
  1631. {
  1632. extend_info_t *newinfo;
  1633. tor_assert(info);
  1634. newinfo = tor_malloc(sizeof(extend_info_t));
  1635. memcpy(newinfo, info, sizeof(extend_info_t));
  1636. if (info->onion_key)
  1637. newinfo->onion_key = crypto_pk_dup_key(info->onion_key);
  1638. else
  1639. newinfo->onion_key = NULL;
  1640. return newinfo;
  1641. }
  1642. /** Return the routerinfo_t for the chosen exit router in <b>state</b>.
  1643. * If there is no chosen exit, or if we don't know the routerinfo_t for
  1644. * the chosen exit, return NULL.
  1645. */
  1646. routerinfo_t *
  1647. build_state_get_exit_router(cpath_build_state_t *state)
  1648. {
  1649. if (!state || !state->chosen_exit)
  1650. return NULL;
  1651. return router_get_by_digest(state->chosen_exit->identity_digest);
  1652. }
  1653. /** Return the nickname for the chosen exit router in <b>state</b>. If
  1654. * there is no chosen exit, or if we don't know the routerinfo_t for the
  1655. * chosen exit, return NULL.
  1656. */
  1657. const char *
  1658. build_state_get_exit_nickname(cpath_build_state_t *state)
  1659. {
  1660. if (!state || !state->chosen_exit)
  1661. return NULL;
  1662. return state->chosen_exit->nickname;
  1663. }
  1664. /** Check whether the entry guard <b>e</b> is usable, given the directory
  1665. * authorities' opinion about the router (stored in <b>ri</b>) and the user's
  1666. * configuration (in <b>options</b>). Set <b>e</b>-&gt;bad_since
  1667. * accordingly. Return true iff the entry guard's status changes.
  1668. *
  1669. * If it's not usable, set *<b>reason</b> to a static string explaining why.
  1670. */
  1671. static int
  1672. entry_guard_set_status(entry_guard_t *e, routerinfo_t *ri,
  1673. time_t now, or_options_t *options, const char **reason)
  1674. {
  1675. char buf[HEX_DIGEST_LEN+1];
  1676. int changed = 0;
  1677. tor_assert(options);
  1678. *reason = NULL;
  1679. /* Do we want to mark this guard as bad? */
  1680. if (!ri)
  1681. *reason = "unlisted";
  1682. else if (!ri->is_running)
  1683. *reason = "down";
  1684. else if (options->UseBridges && ri->purpose != ROUTER_PURPOSE_BRIDGE)
  1685. *reason = "not a bridge";
  1686. else if (!options->UseBridges && !ri->is_possible_guard &&
  1687. !router_nickname_is_in_list(ri, options->EntryNodes))
  1688. *reason = "not recommended as a guard";
  1689. else if (router_nickname_is_in_list(ri, options->ExcludeNodes))
  1690. *reason = "excluded";
  1691. if (*reason && ! e->bad_since) {
  1692. /* Router is newly bad. */
  1693. base16_encode(buf, sizeof(buf), e->identity, DIGEST_LEN);
  1694. log_info(LD_CIRC, "Entry guard %s (%s) is %s: marking as unusable.",
  1695. e->nickname, buf, *reason);
  1696. e->bad_since = now;
  1697. control_event_guard(e->nickname, e->identity, "BAD");
  1698. changed = 1;
  1699. } else if (!*reason && e->bad_since) {
  1700. /* There's nothing wrong with the router any more. */
  1701. base16_encode(buf, sizeof(buf), e->identity, DIGEST_LEN);
  1702. log_info(LD_CIRC, "Entry guard %s (%s) is no longer unusable: "
  1703. "marking as ok.", e->nickname, buf);
  1704. e->bad_since = 0;
  1705. control_event_guard(e->nickname, e->identity, "GOOD");
  1706. changed = 1;
  1707. }
  1708. return changed;
  1709. }
  1710. /** Return true iff enough time has passed since we last tried to connect
  1711. * to the unreachable guard <b>e</b> that we're willing to try again. */
  1712. static int
  1713. entry_is_time_to_retry(entry_guard_t *e, time_t now)
  1714. {
  1715. long diff;
  1716. if (e->last_attempted < e->unreachable_since)
  1717. return 1;
  1718. diff = now - e->unreachable_since;
  1719. if (diff < 6*60*60)
  1720. return now > (e->last_attempted + 60*60);
  1721. else if (diff < 3*24*60*60)
  1722. return now > (e->last_attempted + 4*60*60);
  1723. else if (diff < 7*24*60*60)
  1724. return now > (e->last_attempted + 18*60*60);
  1725. else
  1726. return now > (e->last_attempted + 36*60*60);
  1727. }
  1728. /** Return the router corresponding to <b>e</b>, if <b>e</b> is
  1729. * working well enough that we are willing to use it as an entry
  1730. * right now. (Else return NULL.) In particular, it must be
  1731. * - Listed as either up or never yet contacted;
  1732. * - Present in the routerlist;
  1733. * - Listed as 'stable' or 'fast' by the current dirserver concensus,
  1734. * if demanded by <b>need_uptime</b> or <b>need_capacity</b>;
  1735. * (This check is currently redundant with the Guard flag, but in
  1736. * the future that might change. Best to leave it in for now.)
  1737. * - Allowed by our current ReachableORAddresses config option; and
  1738. * - Currently thought to be reachable by us (unless assume_reachable
  1739. * is true).
  1740. */
  1741. static INLINE routerinfo_t *
  1742. entry_is_live(entry_guard_t *e, int need_uptime, int need_capacity,
  1743. int assume_reachable)
  1744. {
  1745. routerinfo_t *r;
  1746. if (e->bad_since)
  1747. return NULL;
  1748. /* no good if it's unreachable, unless assume_unreachable or can_retry. */
  1749. if ((!assume_reachable && !e->can_retry) &&
  1750. e->unreachable_since && !entry_is_time_to_retry(e, time(NULL)))
  1751. return NULL;
  1752. r = router_get_by_digest(e->identity);
  1753. if (!r)
  1754. return NULL;
  1755. if (get_options()->UseBridges && r->purpose != ROUTER_PURPOSE_BRIDGE)
  1756. return NULL;
  1757. if (!get_options()->UseBridges && r->purpose != ROUTER_PURPOSE_GENERAL)
  1758. return NULL;
  1759. if (router_is_unreliable(r, need_uptime, need_capacity, 0))
  1760. return NULL;
  1761. if (!fascist_firewall_allows_address_or(r->addr,r->or_port))
  1762. return NULL;
  1763. return r;
  1764. }
  1765. /** Return the number of entry guards that we think are usable. */
  1766. static int
  1767. num_live_entry_guards(void)
  1768. {
  1769. int n = 0;
  1770. if (! entry_guards)
  1771. return 0;
  1772. SMARTLIST_FOREACH(entry_guards, entry_guard_t *, entry,
  1773. {
  1774. if (entry_is_live(entry, 0, 1, 0))
  1775. ++n;
  1776. });
  1777. return n;
  1778. }
  1779. /** If <b>digest</b> matches the identity of any node in the
  1780. * entry_guards list, return that node. Else return NULL. */
  1781. static INLINE entry_guard_t *
  1782. is_an_entry_guard(const char *digest)
  1783. {
  1784. SMARTLIST_FOREACH(entry_guards, entry_guard_t *, entry,
  1785. if (!memcmp(digest, entry->identity, DIGEST_LEN))
  1786. return entry;
  1787. );
  1788. return NULL;
  1789. }
  1790. /** Dump a description of our list of entry guards to the log at level
  1791. * <b>severity</b>. */
  1792. static void
  1793. log_entry_guards(int severity)
  1794. {
  1795. smartlist_t *elements = smartlist_create();
  1796. char buf[1024];
  1797. char *s;
  1798. SMARTLIST_FOREACH(entry_guards, entry_guard_t *, e,
  1799. {
  1800. tor_snprintf(buf, sizeof(buf), "%s (%s%s)",
  1801. e->nickname,
  1802. e->bad_since ? "down " : "up ",
  1803. e->made_contact ? "made-contact" : "never-contacted");
  1804. smartlist_add(elements, tor_strdup(buf));
  1805. });
  1806. s = smartlist_join_strings(elements, ",", 0, NULL);
  1807. SMARTLIST_FOREACH(elements, char*, cp, tor_free(cp));
  1808. smartlist_free(elements);
  1809. log_fn(severity,LD_CIRC,"%s",s);
  1810. tor_free(s);
  1811. }
  1812. /** Called when one or more guards that we would previously have used for some
  1813. * purpose are no longer in use because a higher-priority guard has become
  1814. * useable again. */
  1815. static void
  1816. control_event_guard_deferred(void)
  1817. {
  1818. /* XXXX We don't actually have a good way to figure out _how many_ entries
  1819. * are live for some purpose. We need an entry_is_even_slightly_live()
  1820. * function for this to work right. NumEntryGuards isn't reliable: if we
  1821. * need guards with weird properties, we can have more than that number
  1822. * live.
  1823. **/
  1824. #if 0
  1825. int n = 0;
  1826. or_options_t *options = get_options();
  1827. if (!entry_guards)
  1828. return;
  1829. SMARTLIST_FOREACH(entry_guards, entry_guard_t *, entry,
  1830. {
  1831. if (entry_is_live(entry, 0, 1, 0)) {
  1832. if (n++ == options->NumEntryGuards) {
  1833. control_event_guard(entry->nickname, entry->identity, "DEFERRED");
  1834. return;
  1835. }
  1836. }
  1837. });
  1838. #endif
  1839. }
  1840. /** Add a new (preferably stable and fast) router to our
  1841. * entry_guards list. Return a pointer to the router if we succeed,
  1842. * or NULL if we can't find any more suitable entries.
  1843. *
  1844. * If <b>chosen</b> is defined, use that one, and if it's not
  1845. * already in our entry_guards list, put it at the *beginning*.
  1846. * Else, put the one we pick at the end of the list. */
  1847. static routerinfo_t *
  1848. add_an_entry_guard(routerinfo_t *chosen, int reset_status)
  1849. {
  1850. routerinfo_t *router;
  1851. entry_guard_t *entry;
  1852. if (chosen) {
  1853. router = chosen;
  1854. entry = is_an_entry_guard(router->cache_info.identity_digest);
  1855. if (entry) {
  1856. if (reset_status) {
  1857. entry->bad_since = 0;
  1858. entry->can_retry = 1;
  1859. }
  1860. return NULL;
  1861. }
  1862. } else {
  1863. router = choose_good_entry_server(CIRCUIT_PURPOSE_C_GENERAL, NULL);
  1864. if (!router)
  1865. return NULL;
  1866. }
  1867. entry = tor_malloc_zero(sizeof(entry_guard_t));
  1868. log_info(LD_CIRC, "Chose '%s' as new entry guard.", router->nickname);
  1869. strlcpy(entry->nickname, router->nickname, sizeof(entry->nickname));
  1870. memcpy(entry->identity, router->cache_info.identity_digest, DIGEST_LEN);
  1871. entry->chosen_on_date = start_of_month(time(NULL));
  1872. entry->chosen_by_version = tor_strdup(VERSION);
  1873. if (chosen) /* prepend */
  1874. smartlist_insert(entry_guards, 0, entry);
  1875. else /* append */
  1876. smartlist_add(entry_guards, entry);
  1877. control_event_guard(entry->nickname, entry->identity, "NEW");
  1878. control_event_guard_deferred();
  1879. log_entry_guards(LOG_INFO);
  1880. return router;
  1881. }
  1882. /** If the use of entry guards is configured, choose more entry guards
  1883. * until we have enough in the list. */
  1884. static void
  1885. pick_entry_guards(void)
  1886. {
  1887. or_options_t *options = get_options();
  1888. int changed = 0;
  1889. tor_assert(entry_guards);
  1890. while (num_live_entry_guards() < options->NumEntryGuards) {
  1891. if (!add_an_entry_guard(NULL, 0))
  1892. break;
  1893. changed = 1;
  1894. }
  1895. if (changed)
  1896. entry_guards_changed();
  1897. }
  1898. /** How long (in seconds) do we allow an entry guard to be nonfunctional,
  1899. * unlisted, excluded, or otherwise nonusable before we give up on it? */
  1900. #define ENTRY_GUARD_REMOVE_AFTER (30*24*60*60)
  1901. /** Release all storage held by <b>e</b>. */
  1902. static void
  1903. entry_guard_free(entry_guard_t *e)
  1904. {
  1905. tor_assert(e);
  1906. tor_free(e->chosen_by_version);
  1907. tor_free(e);
  1908. }
  1909. /** Remove any entry guard which was selected by an unknown version of Tor,
  1910. * or which was selected by a version of Tor that's known to select
  1911. * entry guards badly. */
  1912. static int
  1913. remove_obsolete_entry_guards(void)
  1914. {
  1915. int changed = 0, i;
  1916. for (i = 0; i < smartlist_len(entry_guards); ++i) {
  1917. entry_guard_t *entry = smartlist_get(entry_guards, i);
  1918. const char *ver = entry->chosen_by_version;
  1919. const char *msg = NULL;
  1920. tor_version_t v;
  1921. int version_is_bad = 0;
  1922. if (!ver) {
  1923. msg = "does not say what version of Tor it was selected by";
  1924. version_is_bad = 1;
  1925. } else if (tor_version_parse(ver, &v)) {
  1926. msg = "does not seem to be from any recognized version of Tor";
  1927. version_is_bad = 1;
  1928. } else if ((tor_version_as_new_as(ver, "0.1.0.10-alpha") &&
  1929. !tor_version_as_new_as(ver, "0.1.2.16-dev")) ||
  1930. (tor_version_as_new_as(ver, "0.2.0.0-alpha") &&
  1931. !tor_version_as_new_as(ver, "0.2.0.6-alpha"))) {
  1932. msg = "was selected without regard for guard bandwidth";
  1933. version_is_bad = 1;
  1934. }
  1935. if (version_is_bad) {
  1936. char dbuf[HEX_DIGEST_LEN+1];
  1937. tor_assert(msg);
  1938. base16_encode(dbuf, sizeof(dbuf), entry->identity, DIGEST_LEN);
  1939. log_notice(LD_CIRC, "Entry guard '%s' (%s) %s. (Version=%s.) "
  1940. "Replacing it.",
  1941. entry->nickname, dbuf, msg, ver?escaped(ver):"none");
  1942. control_event_guard(entry->nickname, entry->identity, "DROPPED");
  1943. entry_guard_free(entry);
  1944. smartlist_del_keeporder(entry_guards, i--);
  1945. log_entry_guards(LOG_INFO);
  1946. changed = 1;
  1947. }
  1948. }
  1949. return changed ? 1 : 0;
  1950. }
  1951. /** Remove all entry guards that have been down or unlisted for so
  1952. * long that we don't think they'll come up again. Return 1 if we
  1953. * removed any, or 0 if we did nothing. */
  1954. static int
  1955. remove_dead_entry_guards(void)
  1956. {
  1957. char dbuf[HEX_DIGEST_LEN+1];
  1958. char tbuf[ISO_TIME_LEN+1];
  1959. time_t now = time(NULL);
  1960. int i;
  1961. int changed = 0;
  1962. for (i = 0; i < smartlist_len(entry_guards); ) {
  1963. entry_guard_t *entry = smartlist_get(entry_guards, i);
  1964. if (entry->bad_since &&
  1965. entry->bad_since + ENTRY_GUARD_REMOVE_AFTER < now) {
  1966. base16_encode(dbuf, sizeof(dbuf), entry->identity, DIGEST_LEN);
  1967. format_local_iso_time(tbuf, entry->bad_since);
  1968. log_info(LD_CIRC, "Entry guard '%s' (%s) has been down or unlisted "
  1969. "since %s local time; removing.",
  1970. entry->nickname, dbuf, tbuf);
  1971. control_event_guard(entry->nickname, entry->identity, "DROPPED");
  1972. entry_guard_free(entry);
  1973. smartlist_del_keeporder(entry_guards, i);
  1974. log_entry_guards(LOG_INFO);
  1975. changed = 1;
  1976. } else
  1977. ++i;
  1978. }
  1979. return changed ? 1 : 0;
  1980. }
  1981. /** A new directory or router-status has arrived; update the down/listed
  1982. * status of the entry guards.
  1983. *
  1984. * An entry is 'down' if the directory lists it as nonrunning.
  1985. * An entry is 'unlisted' if the directory doesn't include it.
  1986. *
  1987. * Don't call this on startup; only on a fresh download. Otherwise we'll
  1988. * think that things are unlisted.
  1989. */
  1990. void
  1991. entry_guards_compute_status(void)
  1992. {
  1993. time_t now;
  1994. int changed = 0;
  1995. int severity = LOG_INFO;
  1996. or_options_t *options;
  1997. if (! entry_guards)
  1998. return;
  1999. options = get_options();
  2000. now = time(NULL);
  2001. SMARTLIST_FOREACH(entry_guards, entry_guard_t *, entry,
  2002. {
  2003. routerinfo_t *r = router_get_by_digest(entry->identity);
  2004. const char *reason = NULL;
  2005. if (entry_guard_set_status(entry, r, now, options, &reason))
  2006. changed = 1;
  2007. if (entry->bad_since)
  2008. tor_assert(reason);
  2009. log_info(LD_CIRC, "Summary: Entry '%s' is %s, %s%s, and %s.",
  2010. entry->nickname,
  2011. entry->unreachable_since ? "unreachable" : "reachable",
  2012. entry->bad_since ? "unusable: " : "usable",
  2013. entry->bad_since ? reason : "",
  2014. entry_is_live(entry, 0, 1, 0) ? "live" : "not live");
  2015. });
  2016. if (remove_dead_entry_guards())
  2017. changed = 1;
  2018. if (changed) {
  2019. log_fn(severity, LD_CIRC, " (%d/%d entry guards are usable/new)",
  2020. num_live_entry_guards(), smartlist_len(entry_guards));
  2021. log_entry_guards(LOG_INFO);
  2022. entry_guards_changed();
  2023. }
  2024. }
  2025. /** Called when a connection to an OR with the identity digest <b>digest</b>
  2026. * is established (<b>succeeded</b>==1) or has failed (<b>succeeded</b>==0).
  2027. * If the OR is an entry, change that entry's up/down status.
  2028. * Return 0 normally, or -1 if we want to tear down the new connection.
  2029. */
  2030. int
  2031. entry_guard_register_connect_status(const char *digest, int succeeded,
  2032. time_t now)
  2033. {
  2034. int changed = 0;
  2035. int refuse_conn = 0;
  2036. int first_contact = 0;
  2037. entry_guard_t *entry = NULL;
  2038. int idx = -1;
  2039. char buf[HEX_DIGEST_LEN+1];
  2040. if (! entry_guards)
  2041. return 0;
  2042. SMARTLIST_FOREACH(entry_guards, entry_guard_t *, e,
  2043. {
  2044. if (!memcmp(e->identity, digest, DIGEST_LEN)) {
  2045. entry = e;
  2046. idx = e_sl_idx;
  2047. break;
  2048. }
  2049. });
  2050. if (!entry)
  2051. return 0;
  2052. base16_encode(buf, sizeof(buf), entry->identity, DIGEST_LEN);
  2053. if (succeeded) {
  2054. if (entry->unreachable_since) {
  2055. log_info(LD_CIRC, "Entry guard '%s' (%s) is now reachable again. Good.",
  2056. entry->nickname, buf);
  2057. entry->can_retry = 0;
  2058. entry->unreachable_since = 0;
  2059. entry->last_attempted = now;
  2060. control_event_guard(entry->nickname, entry->identity, "UP");
  2061. changed = 1;
  2062. }
  2063. if (!entry->made_contact) {
  2064. entry->made_contact = 1;
  2065. first_contact = changed = 1;
  2066. }
  2067. } else { /* ! succeeded */
  2068. if (!entry->made_contact) {
  2069. /* We've never connected to this one. */
  2070. log_info(LD_CIRC,
  2071. "Connection to never-contacted entry guard '%s' (%s) failed. "
  2072. "Removing from the list. %d/%d entry guards usable/new.",
  2073. entry->nickname, buf,
  2074. num_live_entry_guards()-1, smartlist_len(entry_guards)-1);
  2075. entry_guard_free(entry);
  2076. smartlist_del_keeporder(entry_guards, idx);
  2077. log_entry_guards(LOG_INFO);
  2078. changed = 1;
  2079. } else if (!entry->unreachable_since) {
  2080. log_info(LD_CIRC, "Unable to connect to entry guard '%s' (%s). "
  2081. "Marking as unreachable.", entry->nickname, buf);
  2082. entry->unreachable_since = entry->last_attempted = now;
  2083. control_event_guard(entry->nickname, entry->identity, "DOWN");
  2084. changed = 1;
  2085. entry->can_retry = 0; /* We gave it an early chance; no good. */
  2086. } else {
  2087. char tbuf[ISO_TIME_LEN+1];
  2088. format_iso_time(tbuf, entry->unreachable_since);
  2089. log_debug(LD_CIRC, "Failed to connect to unreachable entry guard "
  2090. "'%s' (%s). It has been unreachable since %s.",
  2091. entry->nickname, buf, tbuf);
  2092. entry->last_attempted = now;
  2093. entry->can_retry = 0; /* We gave it an early chance; no good. */
  2094. }
  2095. }
  2096. if (first_contact) {
  2097. /* We've just added a new long-term entry guard. Perhaps the network just
  2098. * came back? We should give our earlier entries another try too,
  2099. * and close this connection so we don't use it before we've given
  2100. * the others a shot. */
  2101. SMARTLIST_FOREACH(entry_guards, entry_guard_t *, e, {
  2102. if (e == entry)
  2103. break;
  2104. if (e->made_contact) {
  2105. routerinfo_t *r = entry_is_live(e, 0, 1, 1);
  2106. if (r && e->unreachable_since) {
  2107. refuse_conn = 1;
  2108. e->can_retry = 1;
  2109. }
  2110. }
  2111. });
  2112. if (refuse_conn) {
  2113. log_info(LD_CIRC,
  2114. "Connected to new entry guard '%s' (%s). Marking earlier "
  2115. "entry guards up. %d/%d entry guards usable/new.",
  2116. entry->nickname, buf,
  2117. num_live_entry_guards(), smartlist_len(entry_guards));
  2118. log_entry_guards(LOG_INFO);
  2119. changed = 1;
  2120. }
  2121. }
  2122. if (changed)
  2123. entry_guards_changed();
  2124. return refuse_conn ? -1 : 0;
  2125. }
  2126. /** When we try to choose an entry guard, should we parse and add
  2127. * config's EntryNodes first? */
  2128. static int should_add_entry_nodes = 0;
  2129. /** Called when the value of EntryNodes changes in our configuration. */
  2130. void
  2131. entry_nodes_should_be_added(void)
  2132. {
  2133. log_info(LD_CIRC, "New EntryNodes config option detected. Will use.");
  2134. should_add_entry_nodes = 1;
  2135. }
  2136. /** Add all nodes in EntryNodes that aren't currently guard nodes to the list
  2137. * of guard nodes, at the front. */
  2138. static void
  2139. entry_guards_prepend_from_config(void)
  2140. {
  2141. or_options_t *options = get_options();
  2142. smartlist_t *entry_routers, *entry_fps;
  2143. smartlist_t *old_entry_guards_on_list, *old_entry_guards_not_on_list;
  2144. tor_assert(entry_guards);
  2145. should_add_entry_nodes = 0;
  2146. if (!options->EntryNodes) {
  2147. /* It's possible that a controller set EntryNodes, thus making
  2148. * should_add_entry_nodes set, then cleared it again, all before the
  2149. * call to choose_random_entry() that triggered us. If so, just return.
  2150. */
  2151. return;
  2152. }
  2153. log_info(LD_CIRC,"Adding configured EntryNodes '%s'.",
  2154. options->EntryNodes);
  2155. entry_routers = smartlist_create();
  2156. entry_fps = smartlist_create();
  2157. old_entry_guards_on_list = smartlist_create();
  2158. old_entry_guards_not_on_list = smartlist_create();
  2159. /* Split entry guards into those on the list and those not. */
  2160. add_nickname_list_to_smartlist(entry_routers, options->EntryNodes, 0);
  2161. SMARTLIST_FOREACH(entry_routers, routerinfo_t *, ri,
  2162. smartlist_add(entry_fps,ri->cache_info.identity_digest));
  2163. SMARTLIST_FOREACH(entry_guards, entry_guard_t *, e, {
  2164. if (smartlist_digest_isin(entry_fps, e->identity))
  2165. smartlist_add(old_entry_guards_on_list, e);
  2166. else
  2167. smartlist_add(old_entry_guards_not_on_list, e);
  2168. });
  2169. /* Remove all currently configured entry guards from entry_routers. */
  2170. SMARTLIST_FOREACH(entry_routers, routerinfo_t *, ri, {
  2171. if (is_an_entry_guard(ri->cache_info.identity_digest)) {
  2172. SMARTLIST_DEL_CURRENT(entry_routers, ri);
  2173. }
  2174. });
  2175. /* Now build the new entry_guards list. */
  2176. smartlist_clear(entry_guards);
  2177. /* First, the previously configured guards that are in EntryNodes. */
  2178. smartlist_add_all(entry_guards, old_entry_guards_on_list);
  2179. /* Next, the rest of EntryNodes */
  2180. SMARTLIST_FOREACH(entry_routers, routerinfo_t *, ri, {
  2181. add_an_entry_guard(ri, 0);
  2182. });
  2183. /* Finally, the remaining EntryNodes, unless we're strict */
  2184. if (options->StrictEntryNodes) {
  2185. SMARTLIST_FOREACH(old_entry_guards_not_on_list, entry_guard_t *, e,
  2186. entry_guard_free(e));
  2187. } else {
  2188. smartlist_add_all(entry_guards, old_entry_guards_not_on_list);
  2189. }
  2190. smartlist_free(entry_routers);
  2191. smartlist_free(entry_fps);
  2192. smartlist_free(old_entry_guards_on_list);
  2193. smartlist_free(old_entry_guards_not_on_list);
  2194. entry_guards_changed();
  2195. }
  2196. /** Return 1 if we're fine adding arbitrary routers out of the
  2197. * directory to our entry guard list. Else return 0. */
  2198. int
  2199. entry_list_can_grow(or_options_t *options)
  2200. {
  2201. if (options->StrictEntryNodes)
  2202. return 0;
  2203. if (options->UseBridges)
  2204. return 0;
  2205. return 1;
  2206. }
  2207. /** Pick a live (up and listed) entry guard from entry_guards. If
  2208. * <b>state</b> is non-NULL, this is for a specific circuit --
  2209. * make sure not to pick this circuit's exit or any node in the
  2210. * exit's family. If <b>state</b> is NULL, we're looking for a random
  2211. * guard (likely a bridge). */
  2212. routerinfo_t *
  2213. choose_random_entry(cpath_build_state_t *state)
  2214. {
  2215. or_options_t *options = get_options();
  2216. smartlist_t *live_entry_guards = smartlist_create();
  2217. smartlist_t *exit_family = smartlist_create();
  2218. routerinfo_t *chosen_exit = state?build_state_get_exit_router(state) : NULL;
  2219. routerinfo_t *r = NULL;
  2220. int need_uptime = state ? state->need_uptime : 0;
  2221. int need_capacity = state ? state->need_capacity : 0;
  2222. int consider_exit_family = 0;
  2223. if (chosen_exit) {
  2224. smartlist_add(exit_family, chosen_exit);
  2225. routerlist_add_family(exit_family, chosen_exit);
  2226. consider_exit_family = 1;
  2227. }
  2228. if (!entry_guards)
  2229. entry_guards = smartlist_create();
  2230. if (should_add_entry_nodes)
  2231. entry_guards_prepend_from_config();
  2232. if (entry_list_can_grow(options) &&
  2233. (! entry_guards ||
  2234. smartlist_len(entry_guards) < options->NumEntryGuards))
  2235. pick_entry_guards();
  2236. retry:
  2237. smartlist_clear(live_entry_guards);
  2238. SMARTLIST_FOREACH(entry_guards, entry_guard_t *, entry,
  2239. {
  2240. r = entry_is_live(entry, need_uptime, need_capacity, 0);
  2241. if (r && (!consider_exit_family || !smartlist_isin(exit_family, r))) {
  2242. smartlist_add(live_entry_guards, r);
  2243. if (!entry->made_contact) {
  2244. /* Always start with the first not-yet-contacted entry
  2245. * guard. Otherwise we might add several new ones, pick
  2246. * the second new one, and now we've expanded our entry
  2247. * guard list without needing to. */
  2248. goto choose_and_finish;
  2249. }
  2250. if (smartlist_len(live_entry_guards) >= options->NumEntryGuards)
  2251. break; /* we have enough */
  2252. }
  2253. });
  2254. /* Try to have at least 2 choices available. This way we don't
  2255. * get stuck with a single live-but-crummy entry and just keep
  2256. * using him.
  2257. * (We might get 2 live-but-crummy entry guards, but so be it.) */
  2258. if (smartlist_len(live_entry_guards) < 2) {
  2259. if (entry_list_can_grow(options)) {
  2260. /* still no? try adding a new entry then */
  2261. /* XXX if guard doesn't imply fast and stable, then we need
  2262. * to tell add_an_entry_guard below what we want, or it might
  2263. * be a long time til we get it. -RD */
  2264. r = add_an_entry_guard(NULL, 0);
  2265. if (r) {
  2266. smartlist_add(live_entry_guards, r);
  2267. entry_guards_changed();
  2268. }
  2269. }
  2270. if (!r && need_uptime) {
  2271. need_uptime = 0; /* try without that requirement */
  2272. goto retry;
  2273. }
  2274. if (!r && need_capacity) {
  2275. /* still no? last attempt, try without requiring capacity */
  2276. need_capacity = 0;
  2277. goto retry;
  2278. }
  2279. if (!r && !entry_list_can_grow(options) && consider_exit_family) {
  2280. /* still no? if we're using bridges or have strictentrynodes
  2281. * set, and our chosen exit is in the same family as all our
  2282. * bridges/entry guards, then be flexible about families. */
  2283. consider_exit_family = 0;
  2284. goto retry;
  2285. }
  2286. /* live_entry_guards may be empty below. Oh well, we tried. */
  2287. }
  2288. choose_and_finish:
  2289. r = smartlist_choose(live_entry_guards);
  2290. smartlist_free(live_entry_guards);
  2291. smartlist_free(exit_family);
  2292. return r;
  2293. }
  2294. /** Helper: Return the start of the month containing <b>time</b>. */
  2295. static time_t
  2296. start_of_month(time_t now)
  2297. {
  2298. struct tm tm;
  2299. tor_gmtime_r(&now, &tm);
  2300. tm.tm_sec = 0;
  2301. tm.tm_min = 0;
  2302. tm.tm_hour = 0;
  2303. tm.tm_mday = 1;
  2304. return tor_timegm(&tm);
  2305. }
  2306. /** Parse <b>state</b> and learn about the entry guards it describes.
  2307. * If <b>set</b> is true, and there are no errors, replace the global
  2308. * entry_list with what we find.
  2309. * On success, return 0. On failure, alloc into *<b>msg</b> a string
  2310. * describing the error, and return -1.
  2311. */
  2312. int
  2313. entry_guards_parse_state(or_state_t *state, int set, char **msg)
  2314. {
  2315. entry_guard_t *node = NULL;
  2316. smartlist_t *new_entry_guards = smartlist_create();
  2317. config_line_t *line;
  2318. time_t now = time(NULL);
  2319. const char *state_version = state->TorVersion;
  2320. digestmap_t *added_by = digestmap_new();
  2321. *msg = NULL;
  2322. for (line = state->EntryGuards; line; line = line->next) {
  2323. if (!strcasecmp(line->key, "EntryGuard")) {
  2324. smartlist_t *args = smartlist_create();
  2325. node = tor_malloc_zero(sizeof(entry_guard_t));
  2326. /* all entry guards on disk have been contacted */
  2327. node->made_contact = 1;
  2328. smartlist_add(new_entry_guards, node);
  2329. smartlist_split_string(args, line->value, " ",
  2330. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  2331. if (smartlist_len(args)<2) {
  2332. *msg = tor_strdup("Unable to parse entry nodes: "
  2333. "Too few arguments to EntryGuard");
  2334. } else if (!is_legal_nickname(smartlist_get(args,0))) {
  2335. *msg = tor_strdup("Unable to parse entry nodes: "
  2336. "Bad nickname for EntryGuard");
  2337. } else {
  2338. strlcpy(node->nickname, smartlist_get(args,0), MAX_NICKNAME_LEN+1);
  2339. if (base16_decode(node->identity, DIGEST_LEN, smartlist_get(args,1),
  2340. strlen(smartlist_get(args,1)))<0) {
  2341. *msg = tor_strdup("Unable to parse entry nodes: "
  2342. "Bad hex digest for EntryGuard");
  2343. }
  2344. }
  2345. SMARTLIST_FOREACH(args, char*, cp, tor_free(cp));
  2346. smartlist_free(args);
  2347. if (*msg)
  2348. break;
  2349. } else if (!strcasecmp(line->key, "EntryGuardDownSince") ||
  2350. !strcasecmp(line->key, "EntryGuardUnlistedSince")) {
  2351. time_t when;
  2352. time_t last_try = 0;
  2353. if (!node) {
  2354. *msg = tor_strdup("Unable to parse entry nodes: "
  2355. "EntryGuardDownSince/UnlistedSince without EntryGuard");
  2356. break;
  2357. }
  2358. if (parse_iso_time(line->value, &when)<0) {
  2359. *msg = tor_strdup("Unable to parse entry nodes: "
  2360. "Bad time in EntryGuardDownSince/UnlistedSince");
  2361. break;
  2362. }
  2363. if (when > now) {
  2364. /* It's a bad idea to believe info in the future: you can wind
  2365. * up with timeouts that aren't allowed to happen for years. */
  2366. continue;
  2367. }
  2368. if (strlen(line->value) >= ISO_TIME_LEN+ISO_TIME_LEN+1) {
  2369. /* ignore failure */
  2370. (void) parse_iso_time(line->value+ISO_TIME_LEN+1, &last_try);
  2371. }
  2372. if (!strcasecmp(line->key, "EntryGuardDownSince")) {
  2373. node->unreachable_since = when;
  2374. node->last_attempted = last_try;
  2375. } else {
  2376. node->bad_since = when;
  2377. }
  2378. } else if (!strcasecmp(line->key, "EntryGuardAddedBy")) {
  2379. char d[DIGEST_LEN];
  2380. /* format is digest version date */
  2381. if (strlen(line->value) < HEX_DIGEST_LEN+1+1+1+ISO_TIME_LEN) {
  2382. log_warn(LD_BUG, "EntryGuardAddedBy line is not long enough.");
  2383. continue;
  2384. }
  2385. if (base16_decode(d, sizeof(d), line->value, HEX_DIGEST_LEN)<0 ||
  2386. line->value[HEX_DIGEST_LEN] != ' ') {
  2387. log_warn(LD_BUG, "EntryGuardAddedBy line %s does not begin with "
  2388. "hex digest", escaped(line->value));
  2389. continue;
  2390. }
  2391. digestmap_set(added_by, d, tor_strdup(line->value+HEX_DIGEST_LEN+1));
  2392. } else {
  2393. log_warn(LD_BUG, "Unexpected key %s", line->key);
  2394. }
  2395. }
  2396. SMARTLIST_FOREACH(new_entry_guards, entry_guard_t *, e,
  2397. {
  2398. char *sp;
  2399. char *val = digestmap_get(added_by, e->identity);
  2400. if (val && (sp = strchr(val, ' '))) {
  2401. time_t when;
  2402. *sp++ = '\0';
  2403. if (parse_iso_time(sp, &when)<0) {
  2404. log_warn(LD_BUG, "Can't read time %s in EntryGuardAddedBy", sp);
  2405. } else {
  2406. e->chosen_by_version = tor_strdup(val);
  2407. e->chosen_on_date = when;
  2408. }
  2409. } else {
  2410. if (state_version) {
  2411. e->chosen_by_version = tor_strdup(state_version);
  2412. e->chosen_on_date = start_of_month(time(NULL));
  2413. }
  2414. }
  2415. });
  2416. if (*msg || !set) {
  2417. SMARTLIST_FOREACH(new_entry_guards, entry_guard_t *, e,
  2418. entry_guard_free(e));
  2419. smartlist_free(new_entry_guards);
  2420. } else { /* !*err && set */
  2421. if (entry_guards) {
  2422. SMARTLIST_FOREACH(entry_guards, entry_guard_t *, e,
  2423. entry_guard_free(e));
  2424. smartlist_free(entry_guards);
  2425. }
  2426. entry_guards = new_entry_guards;
  2427. entry_guards_dirty = 0;
  2428. if (remove_obsolete_entry_guards())
  2429. entry_guards_dirty = 1;
  2430. }
  2431. digestmap_free(added_by, _tor_free);
  2432. return *msg ? -1 : 0;
  2433. }
  2434. /** Our list of entry guards has changed, or some element of one
  2435. * of our entry guards has changed. Write the changes to disk within
  2436. * the next few minutes.
  2437. */
  2438. static void
  2439. entry_guards_changed(void)
  2440. {
  2441. time_t when;
  2442. entry_guards_dirty = 1;
  2443. /* or_state_save() will call entry_guards_update_state(). */
  2444. when = get_options()->AvoidDiskWrites ? time(NULL) + 3600 : time(NULL)+600;
  2445. or_state_mark_dirty(get_or_state(), when);
  2446. }
  2447. /** If the entry guard info has not changed, do nothing and return.
  2448. * Otherwise, free the EntryGuards piece of <b>state</b> and create
  2449. * a new one out of the global entry_guards list, and then mark
  2450. * <b>state</b> dirty so it will get saved to disk.
  2451. */
  2452. void
  2453. entry_guards_update_state(or_state_t *state)
  2454. {
  2455. config_line_t **next, *line;
  2456. if (! entry_guards_dirty)
  2457. return;
  2458. config_free_lines(state->EntryGuards);
  2459. next = &state->EntryGuards;
  2460. *next = NULL;
  2461. if (!entry_guards)
  2462. entry_guards = smartlist_create();
  2463. SMARTLIST_FOREACH(entry_guards, entry_guard_t *, e,
  2464. {
  2465. char dbuf[HEX_DIGEST_LEN+1];
  2466. if (!e->made_contact)
  2467. continue; /* don't write this one to disk */
  2468. *next = line = tor_malloc_zero(sizeof(config_line_t));
  2469. line->key = tor_strdup("EntryGuard");
  2470. line->value = tor_malloc(HEX_DIGEST_LEN+MAX_NICKNAME_LEN+2);
  2471. base16_encode(dbuf, sizeof(dbuf), e->identity, DIGEST_LEN);
  2472. tor_snprintf(line->value,HEX_DIGEST_LEN+MAX_NICKNAME_LEN+2,
  2473. "%s %s", e->nickname, dbuf);
  2474. next = &(line->next);
  2475. if (e->unreachable_since) {
  2476. *next = line = tor_malloc_zero(sizeof(config_line_t));
  2477. line->key = tor_strdup("EntryGuardDownSince");
  2478. line->value = tor_malloc(ISO_TIME_LEN+1+ISO_TIME_LEN+1);
  2479. format_iso_time(line->value, e->unreachable_since);
  2480. if (e->last_attempted) {
  2481. line->value[ISO_TIME_LEN] = ' ';
  2482. format_iso_time(line->value+ISO_TIME_LEN+1, e->last_attempted);
  2483. }
  2484. next = &(line->next);
  2485. }
  2486. if (e->bad_since) {
  2487. *next = line = tor_malloc_zero(sizeof(config_line_t));
  2488. line->key = tor_strdup("EntryGuardUnlistedSince");
  2489. line->value = tor_malloc(ISO_TIME_LEN+1);
  2490. format_iso_time(line->value, e->bad_since);
  2491. next = &(line->next);
  2492. }
  2493. if (e->chosen_on_date && e->chosen_by_version &&
  2494. !strchr(e->chosen_by_version, ' ')) {
  2495. char d[HEX_DIGEST_LEN+1];
  2496. char t[ISO_TIME_LEN+1];
  2497. size_t val_len;
  2498. *next = line = tor_malloc_zero(sizeof(config_line_t));
  2499. line->key = tor_strdup("EntryGuardAddedBy");
  2500. val_len = (HEX_DIGEST_LEN+1+strlen(e->chosen_by_version)
  2501. +1+ISO_TIME_LEN+1);
  2502. line->value = tor_malloc(val_len);
  2503. base16_encode(d, sizeof(d), e->identity, DIGEST_LEN);
  2504. format_iso_time(t, e->chosen_on_date);
  2505. tor_snprintf(line->value, val_len, "%s %s %s",
  2506. d, e->chosen_by_version, t);
  2507. next = &(line->next);
  2508. }
  2509. });
  2510. if (!get_options()->AvoidDiskWrites)
  2511. or_state_mark_dirty(get_or_state(), 0);
  2512. entry_guards_dirty = 0;
  2513. }
  2514. /** If <b>question</b> is the string "entry-guards", then dump
  2515. * to *<b>answer</b> a newly allocated string describing all of
  2516. * the nodes in the global entry_guards list. See control-spec.txt
  2517. * for details.
  2518. * For backward compatibility, we also handle the string "helper-nodes".
  2519. * */
  2520. int
  2521. getinfo_helper_entry_guards(control_connection_t *conn,
  2522. const char *question, char **answer)
  2523. {
  2524. int use_long_names = conn->use_long_names;
  2525. if (!strcmp(question,"entry-guards") ||
  2526. !strcmp(question,"helper-nodes")) {
  2527. smartlist_t *sl = smartlist_create();
  2528. char tbuf[ISO_TIME_LEN+1];
  2529. char nbuf[MAX_VERBOSE_NICKNAME_LEN+1];
  2530. if (!entry_guards)
  2531. entry_guards = smartlist_create();
  2532. SMARTLIST_FOREACH(entry_guards, entry_guard_t *, e,
  2533. {
  2534. size_t len = MAX_VERBOSE_NICKNAME_LEN+ISO_TIME_LEN+32;
  2535. char *c = tor_malloc(len);
  2536. const char *status = NULL;
  2537. time_t when = 0;
  2538. if (!e->made_contact) {
  2539. status = "never-connected";
  2540. } else if (e->bad_since) {
  2541. when = e->bad_since;
  2542. status = "unusable";
  2543. } else {
  2544. status = "up";
  2545. }
  2546. if (use_long_names) {
  2547. routerinfo_t *ri = router_get_by_digest(e->identity);
  2548. if (ri) {
  2549. router_get_verbose_nickname(nbuf, ri);
  2550. } else {
  2551. nbuf[0] = '$';
  2552. base16_encode(nbuf+1, sizeof(nbuf)-1, e->identity, DIGEST_LEN);
  2553. /* e->nickname field is not very reliable if we don't know about
  2554. * this router any longer; don't include it. */
  2555. }
  2556. } else {
  2557. base16_encode(nbuf, sizeof(nbuf), e->identity, DIGEST_LEN);
  2558. }
  2559. if (when) {
  2560. format_iso_time(tbuf, when);
  2561. tor_snprintf(c, len, "%s %s %s\n", nbuf, status, tbuf);
  2562. } else {
  2563. tor_snprintf(c, len, "%s %s\n", nbuf, status);
  2564. }
  2565. smartlist_add(sl, c);
  2566. });
  2567. *answer = smartlist_join_strings(sl, "", 0, NULL);
  2568. SMARTLIST_FOREACH(sl, char *, c, tor_free(c));
  2569. smartlist_free(sl);
  2570. }
  2571. return 0;
  2572. }
  2573. /** DOCDOC */
  2574. typedef struct {
  2575. uint32_t addr;
  2576. uint16_t port;
  2577. char identity[DIGEST_LEN];
  2578. download_status_t fetch_status;
  2579. } bridge_info_t;
  2580. /** A list of known bridges. */
  2581. static smartlist_t *bridge_list = NULL;
  2582. /** Initialize the bridge list to empty, creating it if needed. */
  2583. void
  2584. clear_bridge_list(void)
  2585. {
  2586. if (!bridge_list)
  2587. bridge_list = smartlist_create();
  2588. SMARTLIST_FOREACH(bridge_list, bridge_info_t *, b, tor_free(b));
  2589. smartlist_clear(bridge_list);
  2590. }
  2591. /** Return a bridge pointer if <b>ri</b> is one of our known bridges
  2592. * (either by comparing keys if possible, else by comparing addr/port).
  2593. * Else return NULL. */
  2594. static bridge_info_t *
  2595. routerinfo_get_configured_bridge(routerinfo_t *ri)
  2596. {
  2597. if (!bridge_list)
  2598. return NULL;
  2599. SMARTLIST_FOREACH(bridge_list, bridge_info_t *, bridge,
  2600. {
  2601. if (tor_digest_is_zero(bridge->identity) &&
  2602. bridge->addr == ri->addr && bridge->port == ri->or_port)
  2603. return bridge;
  2604. if (!memcmp(bridge->identity, ri->cache_info.identity_digest,
  2605. DIGEST_LEN))
  2606. return bridge;
  2607. });
  2608. return NULL;
  2609. }
  2610. /** Return 1 if <b>ri</b> is one of our known bridges, else 0. */
  2611. int
  2612. routerinfo_is_a_configured_bridge(routerinfo_t *ri)
  2613. {
  2614. return routerinfo_get_configured_bridge(ri) ? 1 : 0;
  2615. }
  2616. /** Remember a new bridge at <b>addr</b>:<b>port</b>. If <b>digest</b>
  2617. * is set, it tells us the identity key too. */
  2618. void
  2619. bridge_add_from_config(uint32_t addr, uint16_t port, char *digest)
  2620. {
  2621. bridge_info_t *b = tor_malloc_zero(sizeof(bridge_info_t));
  2622. b->addr = addr;
  2623. b->port = port;
  2624. if (digest)
  2625. memcpy(b->identity, digest, DIGEST_LEN);
  2626. if (!bridge_list)
  2627. bridge_list = smartlist_create();
  2628. smartlist_add(bridge_list, b);
  2629. }
  2630. /** Schedule the next fetch for <b>bridge</b>, based on
  2631. * some retry schedule. */
  2632. static void
  2633. bridge_fetch_status_increment(bridge_info_t *bridge, time_t now)
  2634. {
  2635. switch (bridge->fetch_status.n_download_failures) {
  2636. case 0: bridge->fetch_status.next_attempt_at = now+60*15; break;
  2637. case 1: bridge->fetch_status.next_attempt_at = now+60*15; break;
  2638. default: bridge->fetch_status.next_attempt_at = now+60*60; break;
  2639. }
  2640. if (bridge->fetch_status.n_download_failures < 10)
  2641. bridge->fetch_status.n_download_failures++;
  2642. }
  2643. /** We just got a new descriptor for <b>bridge</b>. Reschedule the
  2644. * next fetch for a long time from <b>now</b>. */
  2645. static void
  2646. bridge_fetch_status_arrived(bridge_info_t *bridge, time_t now)
  2647. {
  2648. tor_assert(bridge);
  2649. bridge->fetch_status.next_attempt_at = now+60*60;
  2650. bridge->fetch_status.n_download_failures = 0;
  2651. }
  2652. /** If <b>digest</b> is one of our known bridges, return it. */
  2653. static bridge_info_t *
  2654. find_bridge_by_digest(char *digest)
  2655. {
  2656. SMARTLIST_FOREACH(bridge_list, bridge_info_t *, bridge,
  2657. {
  2658. if (!memcmp(bridge->identity, digest, DIGEST_LEN))
  2659. return bridge;
  2660. });
  2661. return NULL;
  2662. }
  2663. /** We need to ask <b>bridge</b> for its server descriptor. <b>address</b>
  2664. * is a helpful string describing this bridge. */
  2665. static void
  2666. launch_direct_bridge_descriptor_fetch(char *address, bridge_info_t *bridge)
  2667. {
  2668. if (connection_get_by_type_addr_port_purpose(
  2669. CONN_TYPE_DIR, bridge->addr, bridge->port,
  2670. DIR_PURPOSE_FETCH_SERVERDESC))
  2671. return; /* it's already on the way */
  2672. directory_initiate_command(address, bridge->addr,
  2673. bridge->port, 0,
  2674. 1, bridge->identity,
  2675. DIR_PURPOSE_FETCH_SERVERDESC,
  2676. ROUTER_PURPOSE_BRIDGE,
  2677. 0, "authority.z", NULL, 0, 0);
  2678. }
  2679. /** Fetching the bridge descriptor from the bridge authority returned a
  2680. * "not found". Fall back to trying a direct fetch. */
  2681. void
  2682. retry_bridge_descriptor_fetch_directly(char *digest)
  2683. {
  2684. bridge_info_t *bridge = find_bridge_by_digest(digest);
  2685. char address_buf[INET_NTOA_BUF_LEN+1];
  2686. struct in_addr in;
  2687. if (!bridge)
  2688. return; /* not found? oh well. */
  2689. in.s_addr = htonl(bridge->addr);
  2690. tor_inet_ntoa(&in, address_buf, sizeof(address_buf));
  2691. launch_direct_bridge_descriptor_fetch(address_buf, bridge);
  2692. }
  2693. /** For each bridge in our list for which we don't currently have a
  2694. * descriptor, fetch a new copy of its descriptor -- either directly
  2695. * from the bridge or via a bridge authority. */
  2696. void
  2697. fetch_bridge_descriptors(time_t now)
  2698. {
  2699. char address_buf[INET_NTOA_BUF_LEN+1];
  2700. struct in_addr in;
  2701. or_options_t *options = get_options();
  2702. int num_bridge_auths = get_n_authorities(BRIDGE_AUTHORITY);
  2703. int ask_bridge_directly;
  2704. int can_use_bridge_authority;
  2705. if (!bridge_list)
  2706. return;
  2707. SMARTLIST_FOREACH(bridge_list, bridge_info_t *, bridge,
  2708. {
  2709. if (bridge->fetch_status.next_attempt_at > now)
  2710. continue; /* don't bother, no need to retry yet */
  2711. /* schedule another fetch as if this one will fail, in case it does */
  2712. bridge_fetch_status_increment(bridge, now);
  2713. in.s_addr = htonl(bridge->addr);
  2714. tor_inet_ntoa(&in, address_buf, sizeof(address_buf));
  2715. can_use_bridge_authority = !tor_digest_is_zero(bridge->identity) &&
  2716. num_bridge_auths;
  2717. ask_bridge_directly = !can_use_bridge_authority ||
  2718. !options->UpdateBridgesFromAuthority;
  2719. log_debug(LD_DIR, "ask_bridge_directly=%d (%d, %d, %d)",
  2720. ask_bridge_directly, tor_digest_is_zero(bridge->identity),
  2721. !options->UpdateBridgesFromAuthority, !num_bridge_auths);
  2722. if (ask_bridge_directly &&
  2723. !fascist_firewall_allows_address_or(bridge->addr, bridge->port)) {
  2724. log_notice(LD_DIR, "Bridge at '%s:%d' isn't reachable by our "
  2725. "firewall policy. %s.", address_buf, bridge->port,
  2726. can_use_bridge_authority ?
  2727. "Asking bridge authority instead" : "Skipping");
  2728. if (can_use_bridge_authority)
  2729. ask_bridge_directly = 0;
  2730. else
  2731. continue;
  2732. }
  2733. if (ask_bridge_directly) {
  2734. /* we need to ask the bridge itself for its descriptor. */
  2735. launch_direct_bridge_descriptor_fetch(address_buf, bridge);
  2736. } else {
  2737. /* We have a digest and we want to ask an authority. We could
  2738. * combine all the requests into one, but that may give more
  2739. * hints to the bridge authority than we want to give. */
  2740. char resource[10 + HEX_DIGEST_LEN];
  2741. memcpy(resource, "fp/", 3);
  2742. base16_encode(resource+3, HEX_DIGEST_LEN+1,
  2743. bridge->identity, DIGEST_LEN);
  2744. memcpy(resource+3+HEX_DIGEST_LEN, ".z", 3);
  2745. log_info(LD_DIR, "Fetching bridge info '%s' from bridge authority.",
  2746. resource);
  2747. directory_get_from_dirserver(DIR_PURPOSE_FETCH_SERVERDESC,
  2748. ROUTER_PURPOSE_BRIDGE, resource, 0);
  2749. }
  2750. });
  2751. }
  2752. /** We just learned a descriptor for a bridge. See if that
  2753. * digest is in our entry guard list, and add it if not. */
  2754. void
  2755. learned_bridge_descriptor(routerinfo_t *ri, int from_cache)
  2756. {
  2757. tor_assert(ri);
  2758. tor_assert(ri->purpose == ROUTER_PURPOSE_BRIDGE);
  2759. if (get_options()->UseBridges) {
  2760. int first = !any_bridge_descriptors_known();
  2761. bridge_info_t *bridge = routerinfo_get_configured_bridge(ri);
  2762. time_t now = time(NULL);
  2763. ri->is_running = 1;
  2764. if (bridge) { /* if we actually want to use this one */
  2765. /* it's here; schedule its re-fetch for a long time from now. */
  2766. if (!from_cache)
  2767. bridge_fetch_status_arrived(bridge, now);
  2768. add_an_entry_guard(ri, 1);
  2769. log_notice(LD_DIR, "new bridge descriptor '%s' (%s)", ri->nickname,
  2770. from_cache ? "cached" : "fresh");
  2771. if (first)
  2772. routerlist_retry_directory_downloads(now);
  2773. }
  2774. }
  2775. }
  2776. /** Return 1 if any of our entry guards have descriptors that
  2777. * are marked with purpose 'bridge' and are running. Else return 0.
  2778. *
  2779. * We use this function to decide if we're ready to start building
  2780. * circuits through our bridges, or if we need to wait until the
  2781. * directory "server/authority" requests finish. */
  2782. int
  2783. any_bridge_descriptors_known(void)
  2784. {
  2785. tor_assert(get_options()->UseBridges);
  2786. return choose_random_entry(NULL)!=NULL ? 1 : 0;
  2787. }
  2788. /** Return 1 if we have at least one descriptor for a bridge and
  2789. * all descriptors we know are down. Else return 0. If <b>act</b> is
  2790. * 1, then mark the down bridges up; else just observe and report. */
  2791. static int
  2792. bridges_retry_helper(int act)
  2793. {
  2794. routerinfo_t *ri;
  2795. int any_known = 0;
  2796. int any_running = 0;
  2797. if (!entry_guards)
  2798. entry_guards = smartlist_create();
  2799. SMARTLIST_FOREACH(entry_guards, entry_guard_t *, e,
  2800. {
  2801. ri = router_get_by_digest(e->identity);
  2802. if (ri && ri->purpose == ROUTER_PURPOSE_BRIDGE) {
  2803. any_known = 1;
  2804. if (ri->is_running)
  2805. any_running = 1; /* some bridge is both known and running */
  2806. else if (act) { /* mark it for retry */
  2807. ri->is_running = 1;
  2808. e->can_retry = 1;
  2809. e->bad_since = 0;
  2810. }
  2811. }
  2812. });
  2813. return any_known && !any_running;
  2814. }
  2815. /** Do we know any descriptors for our bridges, and are they all
  2816. * down? */
  2817. int
  2818. bridges_known_but_down(void)
  2819. {
  2820. return bridges_retry_helper(0);
  2821. }
  2822. /** Mark all down known bridges up. */
  2823. void
  2824. bridges_retry_all(void)
  2825. {
  2826. bridges_retry_helper(1);
  2827. }
  2828. /** Release all storage held by the list of entry guards and related
  2829. * memory structs. */
  2830. void
  2831. entry_guards_free_all(void)
  2832. {
  2833. if (entry_guards) {
  2834. SMARTLIST_FOREACH(entry_guards, entry_guard_t *, e,
  2835. entry_guard_free(e));
  2836. smartlist_free(entry_guards);
  2837. entry_guards = NULL;
  2838. }
  2839. clear_bridge_list();
  2840. smartlist_free(bridge_list);
  2841. bridge_list = NULL;
  2842. }