router.c 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075
  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-2013, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. #define ROUTER_PRIVATE
  7. #include "or.h"
  8. #include "circuitbuild.h"
  9. #include "circuitlist.h"
  10. #include "circuituse.h"
  11. #include "config.h"
  12. #include "connection.h"
  13. #include "control.h"
  14. #include "crypto_curve25519.h"
  15. #include "directory.h"
  16. #include "dirserv.h"
  17. #include "dns.h"
  18. #include "geoip.h"
  19. #include "hibernate.h"
  20. #include "main.h"
  21. #include "networkstatus.h"
  22. #include "nodelist.h"
  23. #include "policies.h"
  24. #include "relay.h"
  25. #include "rephist.h"
  26. #include "router.h"
  27. #include "routerlist.h"
  28. #include "routerparse.h"
  29. #include "statefile.h"
  30. #include "transports.h"
  31. #include "routerset.h"
  32. /**
  33. * \file router.c
  34. * \brief OR functionality, including key maintenance, generating
  35. * and uploading server descriptors, retrying OR connections.
  36. **/
  37. extern long stats_n_seconds_working;
  38. /************************************************************/
  39. /*****
  40. * Key management: ORs only.
  41. *****/
  42. /** Private keys for this OR. There is also an SSL key managed by tortls.c.
  43. */
  44. static tor_mutex_t *key_lock=NULL;
  45. static time_t onionkey_set_at=0; /**< When was onionkey last changed? */
  46. /** Current private onionskin decryption key: used to decode CREATE cells. */
  47. static crypto_pk_t *onionkey=NULL;
  48. /** Previous private onionskin decryption key: used to decode CREATE cells
  49. * generated by clients that have an older version of our descriptor. */
  50. static crypto_pk_t *lastonionkey=NULL;
  51. #ifdef CURVE25519_ENABLED
  52. /** Current private ntor secret key: used to perform the ntor handshake. */
  53. static curve25519_keypair_t curve25519_onion_key;
  54. /** Previous private ntor secret key: used to perform the ntor handshake
  55. * with clients that have an older version of our descriptor. */
  56. static curve25519_keypair_t last_curve25519_onion_key;
  57. #endif
  58. /** Private server "identity key": used to sign directory info and TLS
  59. * certificates. Never changes. */
  60. static crypto_pk_t *server_identitykey=NULL;
  61. /** Digest of server_identitykey. */
  62. static char server_identitykey_digest[DIGEST_LEN];
  63. /** Private client "identity key": used to sign bridges' and clients'
  64. * outbound TLS certificates. Regenerated on startup and on IP address
  65. * change. */
  66. static crypto_pk_t *client_identitykey=NULL;
  67. /** Signing key used for v3 directory material; only set for authorities. */
  68. static crypto_pk_t *authority_signing_key = NULL;
  69. /** Key certificate to authenticate v3 directory material; only set for
  70. * authorities. */
  71. static authority_cert_t *authority_key_certificate = NULL;
  72. /** For emergency V3 authority key migration: An extra signing key that we use
  73. * with our old (obsolete) identity key for a while. */
  74. static crypto_pk_t *legacy_signing_key = NULL;
  75. /** For emergency V3 authority key migration: An extra certificate to
  76. * authenticate legacy_signing_key with our obsolete identity key.*/
  77. static authority_cert_t *legacy_key_certificate = NULL;
  78. /* (Note that v3 authorities also have a separate "authority identity key",
  79. * but this key is never actually loaded by the Tor process. Instead, it's
  80. * used by tor-gencert to sign new signing keys and make new key
  81. * certificates. */
  82. /** Replace the current onion key with <b>k</b>. Does not affect
  83. * lastonionkey; to update lastonionkey correctly, call rotate_onion_key().
  84. */
  85. static void
  86. set_onion_key(crypto_pk_t *k)
  87. {
  88. if (onionkey && crypto_pk_eq_keys(onionkey, k)) {
  89. /* k is already our onion key; free it and return */
  90. crypto_pk_free(k);
  91. return;
  92. }
  93. tor_mutex_acquire(key_lock);
  94. crypto_pk_free(onionkey);
  95. onionkey = k;
  96. tor_mutex_release(key_lock);
  97. mark_my_descriptor_dirty("set onion key");
  98. }
  99. /** Return the current onion key. Requires that the onion key has been
  100. * loaded or generated. */
  101. crypto_pk_t *
  102. get_onion_key(void)
  103. {
  104. tor_assert(onionkey);
  105. return onionkey;
  106. }
  107. /** Store a full copy of the current onion key into *<b>key</b>, and a full
  108. * copy of the most recent onion key into *<b>last</b>.
  109. */
  110. void
  111. dup_onion_keys(crypto_pk_t **key, crypto_pk_t **last)
  112. {
  113. tor_assert(key);
  114. tor_assert(last);
  115. tor_mutex_acquire(key_lock);
  116. tor_assert(onionkey);
  117. *key = crypto_pk_copy_full(onionkey);
  118. if (lastonionkey)
  119. *last = crypto_pk_copy_full(lastonionkey);
  120. else
  121. *last = NULL;
  122. tor_mutex_release(key_lock);
  123. }
  124. #ifdef CURVE25519_ENABLED
  125. /** Return the current secret onion key for the ntor handshake. Must only
  126. * be called from the main thread. */
  127. static const curve25519_keypair_t *
  128. get_current_curve25519_keypair(void)
  129. {
  130. return &curve25519_onion_key;
  131. }
  132. /** Return a map from KEYID (the key itself) to keypairs for use in the ntor
  133. * handshake. Must only be called from the main thread. */
  134. di_digest256_map_t *
  135. construct_ntor_key_map(void)
  136. {
  137. di_digest256_map_t *m = NULL;
  138. dimap_add_entry(&m,
  139. curve25519_onion_key.pubkey.public_key,
  140. tor_memdup(&curve25519_onion_key,
  141. sizeof(curve25519_keypair_t)));
  142. if (!tor_mem_is_zero((const char*)
  143. last_curve25519_onion_key.pubkey.public_key,
  144. CURVE25519_PUBKEY_LEN)) {
  145. dimap_add_entry(&m,
  146. last_curve25519_onion_key.pubkey.public_key,
  147. tor_memdup(&last_curve25519_onion_key,
  148. sizeof(curve25519_keypair_t)));
  149. }
  150. return m;
  151. }
  152. /** Helper used to deallocate a di_digest256_map_t returned by
  153. * construct_ntor_key_map. */
  154. static void
  155. ntor_key_map_free_helper(void *arg)
  156. {
  157. curve25519_keypair_t *k = arg;
  158. memwipe(k, 0, sizeof(*k));
  159. tor_free(k);
  160. }
  161. /** Release all storage from a keymap returned by construct_ntor_key_map. */
  162. void
  163. ntor_key_map_free(di_digest256_map_t *map)
  164. {
  165. if (!map)
  166. return;
  167. dimap_free(map, ntor_key_map_free_helper);
  168. }
  169. #endif
  170. /** Return the time when the onion key was last set. This is either the time
  171. * when the process launched, or the time of the most recent key rotation since
  172. * the process launched.
  173. */
  174. time_t
  175. get_onion_key_set_at(void)
  176. {
  177. return onionkey_set_at;
  178. }
  179. /** Set the current server identity key to <b>k</b>.
  180. */
  181. void
  182. set_server_identity_key(crypto_pk_t *k)
  183. {
  184. crypto_pk_free(server_identitykey);
  185. server_identitykey = k;
  186. crypto_pk_get_digest(server_identitykey, server_identitykey_digest);
  187. }
  188. /** Make sure that we have set up our identity keys to match or not match as
  189. * appropriate, and die with an assertion if we have not. */
  190. static void
  191. assert_identity_keys_ok(void)
  192. {
  193. tor_assert(client_identitykey);
  194. if (public_server_mode(get_options())) {
  195. /* assert that we have set the client and server keys to be equal */
  196. tor_assert(server_identitykey);
  197. tor_assert(crypto_pk_eq_keys(client_identitykey, server_identitykey));
  198. } else {
  199. /* assert that we have set the client and server keys to be unequal */
  200. if (server_identitykey)
  201. tor_assert(!crypto_pk_eq_keys(client_identitykey, server_identitykey));
  202. }
  203. }
  204. /** Returns the current server identity key; requires that the key has
  205. * been set, and that we are running as a Tor server.
  206. */
  207. crypto_pk_t *
  208. get_server_identity_key(void)
  209. {
  210. tor_assert(server_identitykey);
  211. tor_assert(server_mode(get_options()));
  212. assert_identity_keys_ok();
  213. return server_identitykey;
  214. }
  215. /** Return true iff we are a server and the server identity key
  216. * has been set. */
  217. int
  218. server_identity_key_is_set(void)
  219. {
  220. return server_mode(get_options()) && server_identitykey != NULL;
  221. }
  222. /** Set the current client identity key to <b>k</b>.
  223. */
  224. void
  225. set_client_identity_key(crypto_pk_t *k)
  226. {
  227. crypto_pk_free(client_identitykey);
  228. client_identitykey = k;
  229. }
  230. /** Returns the current client identity key for use on outgoing TLS
  231. * connections; requires that the key has been set.
  232. */
  233. crypto_pk_t *
  234. get_tlsclient_identity_key(void)
  235. {
  236. tor_assert(client_identitykey);
  237. assert_identity_keys_ok();
  238. return client_identitykey;
  239. }
  240. /** Return true iff the client identity key has been set. */
  241. int
  242. client_identity_key_is_set(void)
  243. {
  244. return client_identitykey != NULL;
  245. }
  246. /** Return the key certificate for this v3 (voting) authority, or NULL
  247. * if we have no such certificate. */
  248. authority_cert_t *
  249. get_my_v3_authority_cert(void)
  250. {
  251. return authority_key_certificate;
  252. }
  253. /** Return the v3 signing key for this v3 (voting) authority, or NULL
  254. * if we have no such key. */
  255. crypto_pk_t *
  256. get_my_v3_authority_signing_key(void)
  257. {
  258. return authority_signing_key;
  259. }
  260. /** If we're an authority, and we're using a legacy authority identity key for
  261. * emergency migration purposes, return the certificate associated with that
  262. * key. */
  263. authority_cert_t *
  264. get_my_v3_legacy_cert(void)
  265. {
  266. return legacy_key_certificate;
  267. }
  268. /** If we're an authority, and we're using a legacy authority identity key for
  269. * emergency migration purposes, return that key. */
  270. crypto_pk_t *
  271. get_my_v3_legacy_signing_key(void)
  272. {
  273. return legacy_signing_key;
  274. }
  275. /** Replace the previous onion key with the current onion key, and generate
  276. * a new previous onion key. Immediately after calling this function,
  277. * the OR should:
  278. * - schedule all previous cpuworkers to shut down _after_ processing
  279. * pending work. (This will cause fresh cpuworkers to be generated.)
  280. * - generate and upload a fresh routerinfo.
  281. */
  282. void
  283. rotate_onion_key(void)
  284. {
  285. char *fname, *fname_prev;
  286. crypto_pk_t *prkey = NULL;
  287. or_state_t *state = get_or_state();
  288. #ifdef CURVE25519_ENABLED
  289. curve25519_keypair_t new_curve25519_keypair;
  290. #endif
  291. time_t now;
  292. fname = get_datadir_fname2("keys", "secret_onion_key");
  293. fname_prev = get_datadir_fname2("keys", "secret_onion_key.old");
  294. if (file_status(fname) == FN_FILE) {
  295. if (replace_file(fname, fname_prev))
  296. goto error;
  297. }
  298. if (!(prkey = crypto_pk_new())) {
  299. log_err(LD_GENERAL,"Error constructing rotated onion key");
  300. goto error;
  301. }
  302. if (crypto_pk_generate_key(prkey)) {
  303. log_err(LD_BUG,"Error generating onion key");
  304. goto error;
  305. }
  306. if (crypto_pk_write_private_key_to_filename(prkey, fname)) {
  307. log_err(LD_FS,"Couldn't write generated onion key to \"%s\".", fname);
  308. goto error;
  309. }
  310. #ifdef CURVE25519_ENABLED
  311. tor_free(fname);
  312. tor_free(fname_prev);
  313. fname = get_datadir_fname2("keys", "secret_onion_key_ntor");
  314. fname_prev = get_datadir_fname2("keys", "secret_onion_key_ntor.old");
  315. if (curve25519_keypair_generate(&new_curve25519_keypair, 1) < 0)
  316. goto error;
  317. if (file_status(fname) == FN_FILE) {
  318. if (replace_file(fname, fname_prev))
  319. goto error;
  320. }
  321. if (curve25519_keypair_write_to_file(&new_curve25519_keypair, fname,
  322. "onion") < 0) {
  323. log_err(LD_FS,"Couldn't write curve25519 onion key to \"%s\".",fname);
  324. goto error;
  325. }
  326. #endif
  327. log_info(LD_GENERAL, "Rotating onion key");
  328. tor_mutex_acquire(key_lock);
  329. crypto_pk_free(lastonionkey);
  330. lastonionkey = onionkey;
  331. onionkey = prkey;
  332. #ifdef CURVE25519_ENABLED
  333. memcpy(&last_curve25519_onion_key, &curve25519_onion_key,
  334. sizeof(curve25519_keypair_t));
  335. memcpy(&curve25519_onion_key, &new_curve25519_keypair,
  336. sizeof(curve25519_keypair_t));
  337. #endif
  338. now = time(NULL);
  339. state->LastRotatedOnionKey = onionkey_set_at = now;
  340. tor_mutex_release(key_lock);
  341. mark_my_descriptor_dirty("rotated onion key");
  342. or_state_mark_dirty(state, get_options()->AvoidDiskWrites ? now+3600 : 0);
  343. goto done;
  344. error:
  345. log_warn(LD_GENERAL, "Couldn't rotate onion key.");
  346. if (prkey)
  347. crypto_pk_free(prkey);
  348. done:
  349. #ifdef CURVE25519_ENABLED
  350. memwipe(&new_curve25519_keypair, 0, sizeof(new_curve25519_keypair));
  351. #endif
  352. tor_free(fname);
  353. tor_free(fname_prev);
  354. }
  355. /** Try to read an RSA key from <b>fname</b>. If <b>fname</b> doesn't exist
  356. * and <b>generate</b> is true, create a new RSA key and save it in
  357. * <b>fname</b>. Return the read/created key, or NULL on error. Log all
  358. * errors at level <b>severity</b>.
  359. */
  360. crypto_pk_t *
  361. init_key_from_file(const char *fname, int generate, int severity)
  362. {
  363. crypto_pk_t *prkey = NULL;
  364. if (!(prkey = crypto_pk_new())) {
  365. tor_log(severity, LD_GENERAL,"Error constructing key");
  366. goto error;
  367. }
  368. switch (file_status(fname)) {
  369. case FN_DIR:
  370. case FN_ERROR:
  371. tor_log(severity, LD_FS,"Can't read key from \"%s\"", fname);
  372. goto error;
  373. case FN_NOENT:
  374. if (generate) {
  375. if (!have_lockfile()) {
  376. if (try_locking(get_options(), 0)<0) {
  377. /* Make sure that --list-fingerprint only creates new keys
  378. * if there is no possibility for a deadlock. */
  379. tor_log(severity, LD_FS, "Another Tor process has locked \"%s\". "
  380. "Not writing any new keys.", fname);
  381. /*XXXX The 'other process' might make a key in a second or two;
  382. * maybe we should wait for it. */
  383. goto error;
  384. }
  385. }
  386. log_info(LD_GENERAL, "No key found in \"%s\"; generating fresh key.",
  387. fname);
  388. if (crypto_pk_generate_key(prkey)) {
  389. tor_log(severity, LD_GENERAL,"Error generating onion key");
  390. goto error;
  391. }
  392. if (crypto_pk_check_key(prkey) <= 0) {
  393. tor_log(severity, LD_GENERAL,"Generated key seems invalid");
  394. goto error;
  395. }
  396. log_info(LD_GENERAL, "Generated key seems valid");
  397. if (crypto_pk_write_private_key_to_filename(prkey, fname)) {
  398. tor_log(severity, LD_FS,
  399. "Couldn't write generated key to \"%s\".", fname);
  400. goto error;
  401. }
  402. } else {
  403. log_info(LD_GENERAL, "No key found in \"%s\"", fname);
  404. }
  405. return prkey;
  406. case FN_FILE:
  407. if (crypto_pk_read_private_key_from_filename(prkey, fname)) {
  408. tor_log(severity, LD_GENERAL,"Error loading private key.");
  409. goto error;
  410. }
  411. return prkey;
  412. default:
  413. tor_assert(0);
  414. }
  415. error:
  416. if (prkey)
  417. crypto_pk_free(prkey);
  418. return NULL;
  419. }
  420. #ifdef CURVE25519_ENABLED
  421. /** Load a curve25519 keypair from the file <b>fname</b>, writing it into
  422. * <b>keys_out</b>. If the file isn't found and <b>generate</b> is true,
  423. * create a new keypair and write it into the file. If there are errors, log
  424. * them at level <b>severity</b>. Generate files using <b>tag</b> in their
  425. * ASCII wrapper. */
  426. static int
  427. init_curve25519_keypair_from_file(curve25519_keypair_t *keys_out,
  428. const char *fname,
  429. int generate,
  430. int severity,
  431. const char *tag)
  432. {
  433. switch (file_status(fname)) {
  434. case FN_DIR:
  435. case FN_ERROR:
  436. tor_log(severity, LD_FS,"Can't read key from \"%s\"", fname);
  437. goto error;
  438. case FN_NOENT:
  439. if (generate) {
  440. if (!have_lockfile()) {
  441. if (try_locking(get_options(), 0)<0) {
  442. /* Make sure that --list-fingerprint only creates new keys
  443. * if there is no possibility for a deadlock. */
  444. tor_log(severity, LD_FS, "Another Tor process has locked \"%s\". "
  445. "Not writing any new keys.", fname);
  446. /*XXXX The 'other process' might make a key in a second or two;
  447. * maybe we should wait for it. */
  448. goto error;
  449. }
  450. }
  451. log_info(LD_GENERAL, "No key found in \"%s\"; generating fresh key.",
  452. fname);
  453. if (curve25519_keypair_generate(keys_out, 1) < 0)
  454. goto error;
  455. if (curve25519_keypair_write_to_file(keys_out, fname, tag)<0) {
  456. tor_log(severity, LD_FS,
  457. "Couldn't write generated key to \"%s\".", fname);
  458. memset(keys_out, 0, sizeof(*keys_out));
  459. goto error;
  460. }
  461. } else {
  462. log_info(LD_GENERAL, "No key found in \"%s\"", fname);
  463. }
  464. return 0;
  465. case FN_FILE:
  466. {
  467. char *tag_in=NULL;
  468. if (curve25519_keypair_read_from_file(keys_out, &tag_in, fname) < 0) {
  469. tor_log(severity, LD_GENERAL,"Error loading private key.");
  470. tor_free(tag_in);
  471. goto error;
  472. }
  473. if (!tag_in || strcmp(tag_in, tag)) {
  474. tor_log(severity, LD_GENERAL,"Unexpected tag %s on private key.",
  475. escaped(tag_in));
  476. tor_free(tag_in);
  477. goto error;
  478. }
  479. tor_free(tag_in);
  480. return 0;
  481. }
  482. default:
  483. tor_assert(0);
  484. }
  485. error:
  486. return -1;
  487. }
  488. #endif
  489. /** Try to load the vote-signing private key and certificate for being a v3
  490. * directory authority, and make sure they match. If <b>legacy</b>, load a
  491. * legacy key/cert set for emergency key migration; otherwise load the regular
  492. * key/cert set. On success, store them into *<b>key_out</b> and
  493. * *<b>cert_out</b> respectively, and return 0. On failure, return -1. */
  494. static int
  495. load_authority_keyset(int legacy, crypto_pk_t **key_out,
  496. authority_cert_t **cert_out)
  497. {
  498. int r = -1;
  499. char *fname = NULL, *cert = NULL;
  500. const char *eos = NULL;
  501. crypto_pk_t *signing_key = NULL;
  502. authority_cert_t *parsed = NULL;
  503. fname = get_datadir_fname2("keys",
  504. legacy ? "legacy_signing_key" : "authority_signing_key");
  505. signing_key = init_key_from_file(fname, 0, LOG_INFO);
  506. if (!signing_key) {
  507. log_warn(LD_DIR, "No version 3 directory key found in %s", fname);
  508. goto done;
  509. }
  510. tor_free(fname);
  511. fname = get_datadir_fname2("keys",
  512. legacy ? "legacy_certificate" : "authority_certificate");
  513. cert = read_file_to_str(fname, 0, NULL);
  514. if (!cert) {
  515. log_warn(LD_DIR, "Signing key found, but no certificate found in %s",
  516. fname);
  517. goto done;
  518. }
  519. parsed = authority_cert_parse_from_string(cert, &eos);
  520. if (!parsed) {
  521. log_warn(LD_DIR, "Unable to parse certificate in %s", fname);
  522. goto done;
  523. }
  524. if (!crypto_pk_eq_keys(signing_key, parsed->signing_key)) {
  525. log_warn(LD_DIR, "Stored signing key does not match signing key in "
  526. "certificate");
  527. goto done;
  528. }
  529. crypto_pk_free(*key_out);
  530. authority_cert_free(*cert_out);
  531. *key_out = signing_key;
  532. *cert_out = parsed;
  533. r = 0;
  534. signing_key = NULL;
  535. parsed = NULL;
  536. done:
  537. tor_free(fname);
  538. tor_free(cert);
  539. crypto_pk_free(signing_key);
  540. authority_cert_free(parsed);
  541. return r;
  542. }
  543. /** Load the v3 (voting) authority signing key and certificate, if they are
  544. * present. Return -1 if anything is missing, mismatched, or unloadable;
  545. * return 0 on success. */
  546. static int
  547. init_v3_authority_keys(void)
  548. {
  549. if (load_authority_keyset(0, &authority_signing_key,
  550. &authority_key_certificate)<0)
  551. return -1;
  552. if (get_options()->V3AuthUseLegacyKey &&
  553. load_authority_keyset(1, &legacy_signing_key,
  554. &legacy_key_certificate)<0)
  555. return -1;
  556. return 0;
  557. }
  558. /** If we're a v3 authority, check whether we have a certificate that's
  559. * likely to expire soon. Warn if we do, but not too often. */
  560. void
  561. v3_authority_check_key_expiry(void)
  562. {
  563. time_t now, expires;
  564. static time_t last_warned = 0;
  565. int badness, time_left, warn_interval;
  566. if (!authdir_mode_v3(get_options()) || !authority_key_certificate)
  567. return;
  568. now = time(NULL);
  569. expires = authority_key_certificate->expires;
  570. time_left = (int)( expires - now );
  571. if (time_left <= 0) {
  572. badness = LOG_ERR;
  573. warn_interval = 60*60;
  574. } else if (time_left <= 24*60*60) {
  575. badness = LOG_WARN;
  576. warn_interval = 60*60;
  577. } else if (time_left <= 24*60*60*7) {
  578. badness = LOG_WARN;
  579. warn_interval = 24*60*60;
  580. } else if (time_left <= 24*60*60*30) {
  581. badness = LOG_WARN;
  582. warn_interval = 24*60*60*5;
  583. } else {
  584. return;
  585. }
  586. if (last_warned + warn_interval > now)
  587. return;
  588. if (time_left <= 0) {
  589. tor_log(badness, LD_DIR, "Your v3 authority certificate has expired."
  590. " Generate a new one NOW.");
  591. } else if (time_left <= 24*60*60) {
  592. tor_log(badness, LD_DIR, "Your v3 authority certificate expires in %d "
  593. "hours; Generate a new one NOW.", time_left/(60*60));
  594. } else {
  595. tor_log(badness, LD_DIR, "Your v3 authority certificate expires in %d "
  596. "days; Generate a new one soon.", time_left/(24*60*60));
  597. }
  598. last_warned = now;
  599. }
  600. /** Set up Tor's TLS contexts, based on our configuration and keys. Return 0
  601. * on success, and -1 on failure. */
  602. int
  603. router_initialize_tls_context(void)
  604. {
  605. unsigned int flags = 0;
  606. const or_options_t *options = get_options();
  607. int lifetime = options->SSLKeyLifetime;
  608. if (public_server_mode(options))
  609. flags |= TOR_TLS_CTX_IS_PUBLIC_SERVER;
  610. if (options->TLSECGroup) {
  611. if (!strcasecmp(options->TLSECGroup, "P256"))
  612. flags |= TOR_TLS_CTX_USE_ECDHE_P256;
  613. else if (!strcasecmp(options->TLSECGroup, "P224"))
  614. flags |= TOR_TLS_CTX_USE_ECDHE_P224;
  615. }
  616. if (!lifetime) { /* we should guess a good ssl cert lifetime */
  617. /* choose between 5 and 365 days, and round to the day */
  618. lifetime = 5*24*3600 + crypto_rand_int(361*24*3600);
  619. lifetime -= lifetime % (24*3600);
  620. if (crypto_rand_int(2)) {
  621. /* Half the time we expire at midnight, and half the time we expire
  622. * one second before midnight. (Some CAs wobble their expiry times a
  623. * bit in practice, perhaps to reduce collision attacks; see ticket
  624. * 8443 for details about observed certs in the wild.) */
  625. lifetime--;
  626. }
  627. }
  628. /* It's ok to pass lifetime in as an unsigned int, since
  629. * config_parse_interval() checked it. */
  630. return tor_tls_context_init(flags,
  631. get_tlsclient_identity_key(),
  632. server_mode(options) ?
  633. get_server_identity_key() : NULL,
  634. (unsigned int)lifetime);
  635. }
  636. /** Compute fingerprint (or hashed fingerprint if hashed is 1) and write
  637. * it to 'fingerprint' (or 'hashed-fingerprint'). Return 0 on success, or
  638. * -1 if Tor should die,
  639. */
  640. STATIC int
  641. router_write_fingerprint(int hashed)
  642. {
  643. char *keydir = NULL, *cp = NULL;
  644. const char *fname = hashed ? "hashed-fingerprint" :
  645. "fingerprint";
  646. char fingerprint[FINGERPRINT_LEN+1];
  647. const or_options_t *options = get_options();
  648. char *fingerprint_line = NULL;
  649. int result = -1;
  650. keydir = get_datadir_fname(fname);
  651. log_info(LD_GENERAL,"Dumping %sfingerprint to \"%s\"...",
  652. hashed ? "hashed " : "", keydir);
  653. if (!hashed) {
  654. if (crypto_pk_get_fingerprint(get_server_identity_key(),
  655. fingerprint, 0) < 0) {
  656. log_err(LD_GENERAL,"Error computing fingerprint");
  657. goto done;
  658. }
  659. } else {
  660. if (crypto_pk_get_hashed_fingerprint(get_server_identity_key(),
  661. fingerprint) < 0) {
  662. log_err(LD_GENERAL,"Error computing hashed fingerprint");
  663. goto done;
  664. }
  665. }
  666. tor_asprintf(&fingerprint_line, "%s %s\n", options->Nickname, fingerprint);
  667. /* Check whether we need to write the (hashed-)fingerprint file. */
  668. cp = read_file_to_str(keydir, RFTS_IGNORE_MISSING, NULL);
  669. if (!cp || strcmp(cp, fingerprint_line)) {
  670. if (write_str_to_file(keydir, fingerprint_line, 0)) {
  671. log_err(LD_FS, "Error writing %sfingerprint line to file",
  672. hashed ? "hashed " : "");
  673. goto done;
  674. }
  675. }
  676. log_notice(LD_GENERAL, "Your Tor %s identity key fingerprint is '%s %s'",
  677. hashed ? "bridge's hashed" : "server's", options->Nickname,
  678. fingerprint);
  679. result = 0;
  680. done:
  681. tor_free(cp);
  682. tor_free(keydir);
  683. tor_free(fingerprint_line);
  684. return result;
  685. }
  686. /** Initialize all OR private keys, and the TLS context, as necessary.
  687. * On OPs, this only initializes the tls context. Return 0 on success,
  688. * or -1 if Tor should die.
  689. */
  690. int
  691. init_keys(void)
  692. {
  693. char *keydir;
  694. const char *mydesc;
  695. crypto_pk_t *prkey;
  696. char digest[DIGEST_LEN];
  697. char v3_digest[DIGEST_LEN];
  698. const or_options_t *options = get_options();
  699. dirinfo_type_t type;
  700. time_t now = time(NULL);
  701. dir_server_t *ds;
  702. int v3_digest_set = 0;
  703. authority_cert_t *cert = NULL;
  704. if (!key_lock)
  705. key_lock = tor_mutex_new();
  706. /* There are a couple of paths that put us here before we've asked
  707. * openssl to initialize itself. */
  708. if (crypto_global_init(get_options()->HardwareAccel,
  709. get_options()->AccelName,
  710. get_options()->AccelDir)) {
  711. log_err(LD_BUG, "Unable to initialize OpenSSL. Exiting.");
  712. return -1;
  713. }
  714. /* OP's don't need persistent keys; just make up an identity and
  715. * initialize the TLS context. */
  716. if (!server_mode(options)) {
  717. if (!(prkey = crypto_pk_new()))
  718. return -1;
  719. if (crypto_pk_generate_key(prkey)) {
  720. crypto_pk_free(prkey);
  721. return -1;
  722. }
  723. set_client_identity_key(prkey);
  724. /* Create a TLS context. */
  725. if (router_initialize_tls_context() < 0) {
  726. log_err(LD_GENERAL,"Error creating TLS context for Tor client.");
  727. return -1;
  728. }
  729. return 0;
  730. }
  731. /* Make sure DataDirectory exists, and is private. */
  732. if (check_private_dir(options->DataDirectory, CPD_CREATE, options->User)) {
  733. return -1;
  734. }
  735. /* Check the key directory. */
  736. keydir = get_datadir_fname("keys");
  737. if (check_private_dir(keydir, CPD_CREATE, options->User)) {
  738. tor_free(keydir);
  739. return -1;
  740. }
  741. tor_free(keydir);
  742. /* 1a. Read v3 directory authority key/cert information. */
  743. memset(v3_digest, 0, sizeof(v3_digest));
  744. if (authdir_mode_v3(options)) {
  745. if (init_v3_authority_keys()<0) {
  746. log_err(LD_GENERAL, "We're configured as a V3 authority, but we "
  747. "were unable to load our v3 authority keys and certificate! "
  748. "Use tor-gencert to generate them. Dying.");
  749. return -1;
  750. }
  751. cert = get_my_v3_authority_cert();
  752. if (cert) {
  753. crypto_pk_get_digest(get_my_v3_authority_cert()->identity_key,
  754. v3_digest);
  755. v3_digest_set = 1;
  756. }
  757. }
  758. /* 1b. Read identity key. Make it if none is found. */
  759. keydir = get_datadir_fname2("keys", "secret_id_key");
  760. log_info(LD_GENERAL,"Reading/making identity key \"%s\"...",keydir);
  761. prkey = init_key_from_file(keydir, 1, LOG_ERR);
  762. tor_free(keydir);
  763. if (!prkey) return -1;
  764. set_server_identity_key(prkey);
  765. /* 1c. If we are configured as a bridge, generate a client key;
  766. * otherwise, set the server identity key as our client identity
  767. * key. */
  768. if (public_server_mode(options)) {
  769. set_client_identity_key(crypto_pk_dup_key(prkey)); /* set above */
  770. } else {
  771. if (!(prkey = crypto_pk_new()))
  772. return -1;
  773. if (crypto_pk_generate_key(prkey)) {
  774. crypto_pk_free(prkey);
  775. return -1;
  776. }
  777. set_client_identity_key(prkey);
  778. }
  779. /* 2. Read onion key. Make it if none is found. */
  780. keydir = get_datadir_fname2("keys", "secret_onion_key");
  781. log_info(LD_GENERAL,"Reading/making onion key \"%s\"...",keydir);
  782. prkey = init_key_from_file(keydir, 1, LOG_ERR);
  783. tor_free(keydir);
  784. if (!prkey) return -1;
  785. set_onion_key(prkey);
  786. if (options->command == CMD_RUN_TOR) {
  787. /* only mess with the state file if we're actually running Tor */
  788. or_state_t *state = get_or_state();
  789. if (state->LastRotatedOnionKey > 100 && state->LastRotatedOnionKey < now) {
  790. /* We allow for some parsing slop, but we don't want to risk accepting
  791. * values in the distant future. If we did, we might never rotate the
  792. * onion key. */
  793. onionkey_set_at = state->LastRotatedOnionKey;
  794. } else {
  795. /* We have no LastRotatedOnionKey set; either we just created the key
  796. * or it's a holdover from 0.1.2.4-alpha-dev or earlier. In either case,
  797. * start the clock ticking now so that we will eventually rotate it even
  798. * if we don't stay up for a full MIN_ONION_KEY_LIFETIME. */
  799. state->LastRotatedOnionKey = onionkey_set_at = now;
  800. or_state_mark_dirty(state, options->AvoidDiskWrites ?
  801. time(NULL)+3600 : 0);
  802. }
  803. }
  804. keydir = get_datadir_fname2("keys", "secret_onion_key.old");
  805. if (!lastonionkey && file_status(keydir) == FN_FILE) {
  806. prkey = init_key_from_file(keydir, 1, LOG_ERR); /* XXXX Why 1? */
  807. if (prkey)
  808. lastonionkey = prkey;
  809. }
  810. tor_free(keydir);
  811. #ifdef CURVE25519_ENABLED
  812. {
  813. /* 2b. Load curve25519 onion keys. */
  814. int r;
  815. keydir = get_datadir_fname2("keys", "secret_onion_key_ntor");
  816. r = init_curve25519_keypair_from_file(&curve25519_onion_key,
  817. keydir, 1, LOG_ERR, "onion");
  818. tor_free(keydir);
  819. if (r<0)
  820. return -1;
  821. keydir = get_datadir_fname2("keys", "secret_onion_key_ntor.old");
  822. if (tor_mem_is_zero((const char *)
  823. last_curve25519_onion_key.pubkey.public_key,
  824. CURVE25519_PUBKEY_LEN) &&
  825. file_status(keydir) == FN_FILE) {
  826. init_curve25519_keypair_from_file(&last_curve25519_onion_key,
  827. keydir, 0, LOG_ERR, "onion");
  828. }
  829. tor_free(keydir);
  830. }
  831. #endif
  832. /* 3. Initialize link key and TLS context. */
  833. if (router_initialize_tls_context() < 0) {
  834. log_err(LD_GENERAL,"Error initializing TLS context");
  835. return -1;
  836. }
  837. /* 4. Build our router descriptor. */
  838. /* Must be called after keys are initialized. */
  839. mydesc = router_get_my_descriptor();
  840. if (authdir_mode_handles_descs(options, ROUTER_PURPOSE_GENERAL)) {
  841. const char *m = NULL;
  842. routerinfo_t *ri;
  843. /* We need to add our own fingerprint so it gets recognized. */
  844. if (dirserv_add_own_fingerprint(options->Nickname,
  845. get_server_identity_key())) {
  846. log_err(LD_GENERAL,"Error adding own fingerprint to approved set");
  847. return -1;
  848. }
  849. if (mydesc) {
  850. was_router_added_t added;
  851. ri = router_parse_entry_from_string(mydesc, NULL, 1, 0, NULL);
  852. if (!ri) {
  853. log_err(LD_GENERAL,"Generated a routerinfo we couldn't parse.");
  854. return -1;
  855. }
  856. added = dirserv_add_descriptor(ri, &m, "self");
  857. if (!WRA_WAS_ADDED(added)) {
  858. if (!WRA_WAS_OUTDATED(added)) {
  859. log_err(LD_GENERAL, "Unable to add own descriptor to directory: %s",
  860. m?m:"<unknown error>");
  861. return -1;
  862. } else {
  863. /* If the descriptor was outdated, that's ok. This can happen
  864. * when some config options are toggled that affect workers, but
  865. * we don't really need new keys yet so the descriptor doesn't
  866. * change and the old one is still fresh. */
  867. log_info(LD_GENERAL, "Couldn't add own descriptor to directory "
  868. "after key init: %s This is usually not a problem.",
  869. m?m:"<unknown error>");
  870. }
  871. }
  872. }
  873. }
  874. /* 5. Dump fingerprint and possibly hashed fingerprint to files. */
  875. if (router_write_fingerprint(0)) {
  876. log_err(LD_FS, "Error writing fingerprint to file");
  877. return -1;
  878. }
  879. if (!public_server_mode(options) && router_write_fingerprint(1)) {
  880. log_err(LD_FS, "Error writing hashed fingerprint to file");
  881. return -1;
  882. }
  883. if (!authdir_mode(options))
  884. return 0;
  885. /* 6. [authdirserver only] load approved-routers file */
  886. if (dirserv_load_fingerprint_file() < 0) {
  887. log_err(LD_GENERAL,"Error loading fingerprints");
  888. return -1;
  889. }
  890. /* 6b. [authdirserver only] add own key to approved directories. */
  891. crypto_pk_get_digest(get_server_identity_key(), digest);
  892. type = ((options->V1AuthoritativeDir ? V1_DIRINFO : NO_DIRINFO) |
  893. (options->V3AuthoritativeDir ?
  894. (V3_DIRINFO|MICRODESC_DIRINFO|EXTRAINFO_DIRINFO) : NO_DIRINFO) |
  895. (options->BridgeAuthoritativeDir ? BRIDGE_DIRINFO : NO_DIRINFO));
  896. ds = router_get_trusteddirserver_by_digest(digest);
  897. if (!ds) {
  898. ds = trusted_dir_server_new(options->Nickname, NULL,
  899. router_get_advertised_dir_port(options, 0),
  900. router_get_advertised_or_port(options),
  901. digest,
  902. v3_digest,
  903. type, 0.0);
  904. if (!ds) {
  905. log_err(LD_GENERAL,"We want to be a directory authority, but we "
  906. "couldn't add ourselves to the authority list. Failing.");
  907. return -1;
  908. }
  909. dir_server_add(ds);
  910. }
  911. if (ds->type != type) {
  912. log_warn(LD_DIR, "Configured authority type does not match authority "
  913. "type in DirAuthority list. Adjusting. (%d v %d)",
  914. type, ds->type);
  915. ds->type = type;
  916. }
  917. if (v3_digest_set && (ds->type & V3_DIRINFO) &&
  918. tor_memneq(v3_digest, ds->v3_identity_digest, DIGEST_LEN)) {
  919. log_warn(LD_DIR, "V3 identity key does not match identity declared in "
  920. "DirAuthority line. Adjusting.");
  921. memcpy(ds->v3_identity_digest, v3_digest, DIGEST_LEN);
  922. }
  923. if (cert) { /* add my own cert to the list of known certs */
  924. log_info(LD_DIR, "adding my own v3 cert");
  925. if (trusted_dirs_load_certs_from_string(
  926. cert->cache_info.signed_descriptor_body,
  927. TRUSTED_DIRS_CERTS_SRC_SELF, 0)<0) {
  928. log_warn(LD_DIR, "Unable to parse my own v3 cert! Failing.");
  929. return -1;
  930. }
  931. }
  932. return 0; /* success */
  933. }
  934. /* Keep track of whether we should upload our server descriptor,
  935. * and what type of server we are.
  936. */
  937. /** Whether we can reach our ORPort from the outside. */
  938. static int can_reach_or_port = 0;
  939. /** Whether we can reach our DirPort from the outside. */
  940. static int can_reach_dir_port = 0;
  941. /** Forget what we have learned about our reachability status. */
  942. void
  943. router_reset_reachability(void)
  944. {
  945. can_reach_or_port = can_reach_dir_port = 0;
  946. }
  947. /** Return 1 if ORPort is known reachable; else return 0. */
  948. int
  949. check_whether_orport_reachable(void)
  950. {
  951. const or_options_t *options = get_options();
  952. return options->AssumeReachable ||
  953. can_reach_or_port;
  954. }
  955. /** Return 1 if we don't have a dirport configured, or if it's reachable. */
  956. int
  957. check_whether_dirport_reachable(void)
  958. {
  959. const or_options_t *options = get_options();
  960. return !options->DirPort_set ||
  961. options->AssumeReachable ||
  962. net_is_disabled() ||
  963. can_reach_dir_port;
  964. }
  965. /** Look at a variety of factors, and return 0 if we don't want to
  966. * advertise the fact that we have a DirPort open. Else return the
  967. * DirPort we want to advertise.
  968. *
  969. * Log a helpful message if we change our mind about whether to publish
  970. * a DirPort.
  971. */
  972. static int
  973. decide_to_advertise_dirport(const or_options_t *options, uint16_t dir_port)
  974. {
  975. static int advertising=1; /* start out assuming we will advertise */
  976. int new_choice=1;
  977. const char *reason = NULL;
  978. /* Section one: reasons to publish or not publish that aren't
  979. * worth mentioning to the user, either because they're obvious
  980. * or because they're normal behavior. */
  981. if (!dir_port) /* short circuit the rest of the function */
  982. return 0;
  983. if (authdir_mode(options)) /* always publish */
  984. return dir_port;
  985. if (net_is_disabled())
  986. return 0;
  987. if (!check_whether_dirport_reachable())
  988. return 0;
  989. if (!router_get_advertised_dir_port(options, dir_port))
  990. return 0;
  991. /* Section two: reasons to publish or not publish that the user
  992. * might find surprising. These are generally config options that
  993. * make us choose not to publish. */
  994. if (accounting_is_enabled(options)) {
  995. /* Don't spend bytes for directory traffic if we could end up hibernating,
  996. * but allow DirPort otherwise. Some people set AccountingMax because
  997. * they're confused or to get statistics. */
  998. int interval_length = accounting_get_interval_length();
  999. uint32_t effective_bw = get_effective_bwrate(options);
  1000. if (!interval_length) {
  1001. log_warn(LD_BUG, "An accounting interval is not allowed to be zero "
  1002. "seconds long. Raising to 1.");
  1003. interval_length = 1;
  1004. }
  1005. log_info(LD_GENERAL, "Calculating whether to disable dirport: effective "
  1006. "bwrate: %u, AccountingMax: "U64_FORMAT", "
  1007. "accounting interval length %d", effective_bw,
  1008. U64_PRINTF_ARG(options->AccountingMax),
  1009. interval_length);
  1010. if (effective_bw >=
  1011. options->AccountingMax / interval_length) {
  1012. new_choice = 0;
  1013. reason = "AccountingMax enabled";
  1014. }
  1015. #define MIN_BW_TO_ADVERTISE_DIRPORT 51200
  1016. } else if (options->BandwidthRate < MIN_BW_TO_ADVERTISE_DIRPORT ||
  1017. (options->RelayBandwidthRate > 0 &&
  1018. options->RelayBandwidthRate < MIN_BW_TO_ADVERTISE_DIRPORT)) {
  1019. /* if we're advertising a small amount */
  1020. new_choice = 0;
  1021. reason = "BandwidthRate under 50KB";
  1022. }
  1023. if (advertising != new_choice) {
  1024. if (new_choice == 1) {
  1025. log_notice(LD_DIR, "Advertising DirPort as %d", dir_port);
  1026. } else {
  1027. tor_assert(reason);
  1028. log_notice(LD_DIR, "Not advertising DirPort (Reason: %s)", reason);
  1029. }
  1030. advertising = new_choice;
  1031. }
  1032. return advertising ? dir_port : 0;
  1033. }
  1034. /** Allocate and return a new extend_info_t that can be used to build
  1035. * a circuit to or through the router <b>r</b>. Use the primary
  1036. * address of the router unless <b>for_direct_connect</b> is true, in
  1037. * which case the preferred address is used instead. */
  1038. static extend_info_t *
  1039. extend_info_from_router(const routerinfo_t *r)
  1040. {
  1041. tor_addr_port_t ap;
  1042. tor_assert(r);
  1043. router_get_prim_orport(r, &ap);
  1044. return extend_info_new(r->nickname, r->cache_info.identity_digest,
  1045. r->onion_pkey, r->onion_curve25519_pkey,
  1046. &ap.addr, ap.port);
  1047. }
  1048. /** Some time has passed, or we just got new directory information.
  1049. * See if we currently believe our ORPort or DirPort to be
  1050. * unreachable. If so, launch a new test for it.
  1051. *
  1052. * For ORPort, we simply try making a circuit that ends at ourselves.
  1053. * Success is noticed in onionskin_answer().
  1054. *
  1055. * For DirPort, we make a connection via Tor to our DirPort and ask
  1056. * for our own server descriptor.
  1057. * Success is noticed in connection_dir_client_reached_eof().
  1058. */
  1059. void
  1060. consider_testing_reachability(int test_or, int test_dir)
  1061. {
  1062. const routerinfo_t *me = router_get_my_routerinfo();
  1063. int orport_reachable = check_whether_orport_reachable();
  1064. tor_addr_t addr;
  1065. const or_options_t *options = get_options();
  1066. if (!me)
  1067. return;
  1068. if (routerset_contains_router(options->ExcludeNodes, me, -1) &&
  1069. options->StrictNodes) {
  1070. /* If we've excluded ourself, and StrictNodes is set, we can't test
  1071. * ourself. */
  1072. if (test_or || test_dir) {
  1073. #define SELF_EXCLUDED_WARN_INTERVAL 3600
  1074. static ratelim_t warning_limit=RATELIM_INIT(SELF_EXCLUDED_WARN_INTERVAL);
  1075. log_fn_ratelim(&warning_limit, LOG_WARN, LD_CIRC,
  1076. "Can't peform self-tests for this relay: we have "
  1077. "listed ourself in ExcludeNodes, and StrictNodes is set. "
  1078. "We cannot learn whether we are usable, and will not "
  1079. "be able to advertise ourself.");
  1080. }
  1081. return;
  1082. }
  1083. if (test_or && (!orport_reachable || !circuit_enough_testing_circs())) {
  1084. extend_info_t *ei = extend_info_from_router(me);
  1085. /* XXX IPv6 self testing */
  1086. log_info(LD_CIRC, "Testing %s of my ORPort: %s:%d.",
  1087. !orport_reachable ? "reachability" : "bandwidth",
  1088. fmt_addr32(me->addr), me->or_port);
  1089. circuit_launch_by_extend_info(CIRCUIT_PURPOSE_TESTING, ei,
  1090. CIRCLAUNCH_NEED_CAPACITY|CIRCLAUNCH_IS_INTERNAL);
  1091. extend_info_free(ei);
  1092. }
  1093. tor_addr_from_ipv4h(&addr, me->addr);
  1094. if (test_dir && !check_whether_dirport_reachable() &&
  1095. !connection_get_by_type_addr_port_purpose(
  1096. CONN_TYPE_DIR, &addr, me->dir_port,
  1097. DIR_PURPOSE_FETCH_SERVERDESC)) {
  1098. /* ask myself, via tor, for my server descriptor. */
  1099. directory_initiate_command(&addr,
  1100. me->or_port, me->dir_port,
  1101. me->cache_info.identity_digest,
  1102. DIR_PURPOSE_FETCH_SERVERDESC,
  1103. ROUTER_PURPOSE_GENERAL,
  1104. DIRIND_ANON_DIRPORT, "authority.z", NULL, 0, 0);
  1105. }
  1106. }
  1107. /** Annotate that we found our ORPort reachable. */
  1108. void
  1109. router_orport_found_reachable(void)
  1110. {
  1111. const routerinfo_t *me = router_get_my_routerinfo();
  1112. if (!can_reach_or_port && me) {
  1113. char *address = tor_dup_ip(me->addr);
  1114. log_notice(LD_OR,"Self-testing indicates your ORPort is reachable from "
  1115. "the outside. Excellent.%s",
  1116. get_options()->PublishServerDescriptor_ != NO_DIRINFO ?
  1117. " Publishing server descriptor." : "");
  1118. can_reach_or_port = 1;
  1119. mark_my_descriptor_dirty("ORPort found reachable");
  1120. control_event_server_status(LOG_NOTICE,
  1121. "REACHABILITY_SUCCEEDED ORADDRESS=%s:%d",
  1122. address, me->or_port);
  1123. tor_free(address);
  1124. }
  1125. }
  1126. /** Annotate that we found our DirPort reachable. */
  1127. void
  1128. router_dirport_found_reachable(void)
  1129. {
  1130. const routerinfo_t *me = router_get_my_routerinfo();
  1131. if (!can_reach_dir_port && me) {
  1132. char *address = tor_dup_ip(me->addr);
  1133. log_notice(LD_DIRSERV,"Self-testing indicates your DirPort is reachable "
  1134. "from the outside. Excellent.");
  1135. can_reach_dir_port = 1;
  1136. if (decide_to_advertise_dirport(get_options(), me->dir_port))
  1137. mark_my_descriptor_dirty("DirPort found reachable");
  1138. control_event_server_status(LOG_NOTICE,
  1139. "REACHABILITY_SUCCEEDED DIRADDRESS=%s:%d",
  1140. address, me->dir_port);
  1141. tor_free(address);
  1142. }
  1143. }
  1144. /** We have enough testing circuits open. Send a bunch of "drop"
  1145. * cells down each of them, to exercise our bandwidth. */
  1146. void
  1147. router_perform_bandwidth_test(int num_circs, time_t now)
  1148. {
  1149. int num_cells = (int)(get_options()->BandwidthRate * 10 /
  1150. CELL_MAX_NETWORK_SIZE);
  1151. int max_cells = num_cells < CIRCWINDOW_START ?
  1152. num_cells : CIRCWINDOW_START;
  1153. int cells_per_circuit = max_cells / num_circs;
  1154. origin_circuit_t *circ = NULL;
  1155. log_notice(LD_OR,"Performing bandwidth self-test...done.");
  1156. while ((circ = circuit_get_next_by_pk_and_purpose(circ, NULL,
  1157. CIRCUIT_PURPOSE_TESTING))) {
  1158. /* dump cells_per_circuit drop cells onto this circ */
  1159. int i = cells_per_circuit;
  1160. if (circ->base_.state != CIRCUIT_STATE_OPEN)
  1161. continue;
  1162. circ->base_.timestamp_dirty = now;
  1163. while (i-- > 0) {
  1164. if (relay_send_command_from_edge(0, TO_CIRCUIT(circ),
  1165. RELAY_COMMAND_DROP,
  1166. NULL, 0, circ->cpath->prev)<0) {
  1167. return; /* stop if error */
  1168. }
  1169. }
  1170. }
  1171. }
  1172. /** Return true iff our network is in some sense disabled: either we're
  1173. * hibernating, entering hibernation, or */
  1174. int
  1175. net_is_disabled(void)
  1176. {
  1177. return get_options()->DisableNetwork || we_are_hibernating();
  1178. }
  1179. /** Return true iff we believe ourselves to be an authoritative
  1180. * directory server.
  1181. */
  1182. int
  1183. authdir_mode(const or_options_t *options)
  1184. {
  1185. return options->AuthoritativeDir != 0;
  1186. }
  1187. /** Return true iff we believe ourselves to be a v1 authoritative
  1188. * directory server.
  1189. */
  1190. int
  1191. authdir_mode_v1(const or_options_t *options)
  1192. {
  1193. return authdir_mode(options) && options->V1AuthoritativeDir != 0;
  1194. }
  1195. /** Return true iff we believe ourselves to be a v3 authoritative
  1196. * directory server.
  1197. */
  1198. int
  1199. authdir_mode_v3(const or_options_t *options)
  1200. {
  1201. return authdir_mode(options) && options->V3AuthoritativeDir != 0;
  1202. }
  1203. /** Return true iff we are a v1 or v3 directory authority. */
  1204. int
  1205. authdir_mode_any_main(const or_options_t *options)
  1206. {
  1207. return options->V1AuthoritativeDir ||
  1208. options->V3AuthoritativeDir;
  1209. }
  1210. /** Return true if we believe ourselves to be any kind of
  1211. * authoritative directory beyond just a hidserv authority. */
  1212. int
  1213. authdir_mode_any_nonhidserv(const or_options_t *options)
  1214. {
  1215. return options->BridgeAuthoritativeDir ||
  1216. authdir_mode_any_main(options);
  1217. }
  1218. /** Return true iff we are an authoritative directory server that is
  1219. * authoritative about receiving and serving descriptors of type
  1220. * <b>purpose</b> on its dirport. Use -1 for "any purpose". */
  1221. int
  1222. authdir_mode_handles_descs(const or_options_t *options, int purpose)
  1223. {
  1224. if (purpose < 0)
  1225. return authdir_mode_any_nonhidserv(options);
  1226. else if (purpose == ROUTER_PURPOSE_GENERAL)
  1227. return authdir_mode_any_main(options);
  1228. else if (purpose == ROUTER_PURPOSE_BRIDGE)
  1229. return (options->BridgeAuthoritativeDir);
  1230. else
  1231. return 0;
  1232. }
  1233. /** Return true iff we are an authoritative directory server that
  1234. * publishes its own network statuses.
  1235. */
  1236. int
  1237. authdir_mode_publishes_statuses(const or_options_t *options)
  1238. {
  1239. if (authdir_mode_bridge(options))
  1240. return 0;
  1241. return authdir_mode_any_nonhidserv(options);
  1242. }
  1243. /** Return true iff we are an authoritative directory server that
  1244. * tests reachability of the descriptors it learns about.
  1245. */
  1246. int
  1247. authdir_mode_tests_reachability(const or_options_t *options)
  1248. {
  1249. return authdir_mode_handles_descs(options, -1);
  1250. }
  1251. /** Return true iff we believe ourselves to be a bridge authoritative
  1252. * directory server.
  1253. */
  1254. int
  1255. authdir_mode_bridge(const or_options_t *options)
  1256. {
  1257. return authdir_mode(options) && options->BridgeAuthoritativeDir != 0;
  1258. }
  1259. /** Return true iff we are trying to be a server.
  1260. */
  1261. int
  1262. server_mode(const or_options_t *options)
  1263. {
  1264. if (options->ClientOnly) return 0;
  1265. /* XXXX024 I believe we can kill off ORListenAddress here.*/
  1266. return (options->ORPort_set || options->ORListenAddress);
  1267. }
  1268. /** Return true iff we are trying to be a non-bridge server.
  1269. */
  1270. int
  1271. public_server_mode(const or_options_t *options)
  1272. {
  1273. if (!server_mode(options)) return 0;
  1274. return (!options->BridgeRelay);
  1275. }
  1276. /** Return true iff the combination of options in <b>options</b> and parameters
  1277. * in the consensus mean that we don't want to allow exits from circuits
  1278. * we got from addresses not known to be servers. */
  1279. int
  1280. should_refuse_unknown_exits(const or_options_t *options)
  1281. {
  1282. if (options->RefuseUnknownExits != -1) {
  1283. return options->RefuseUnknownExits;
  1284. } else {
  1285. return networkstatus_get_param(NULL, "refuseunknownexits", 1, 0, 1);
  1286. }
  1287. }
  1288. /** Remember if we've advertised ourselves to the dirservers. */
  1289. static int server_is_advertised=0;
  1290. /** Return true iff we have published our descriptor lately.
  1291. */
  1292. int
  1293. advertised_server_mode(void)
  1294. {
  1295. return server_is_advertised;
  1296. }
  1297. /**
  1298. * Called with a boolean: set whether we have recently published our
  1299. * descriptor.
  1300. */
  1301. static void
  1302. set_server_advertised(int s)
  1303. {
  1304. server_is_advertised = s;
  1305. }
  1306. /** Return true iff we are trying to proxy client connections. */
  1307. int
  1308. proxy_mode(const or_options_t *options)
  1309. {
  1310. (void)options;
  1311. SMARTLIST_FOREACH_BEGIN(get_configured_ports(), const port_cfg_t *, p) {
  1312. if (p->type == CONN_TYPE_AP_LISTENER ||
  1313. p->type == CONN_TYPE_AP_TRANS_LISTENER ||
  1314. p->type == CONN_TYPE_AP_DNS_LISTENER ||
  1315. p->type == CONN_TYPE_AP_NATD_LISTENER)
  1316. return 1;
  1317. } SMARTLIST_FOREACH_END(p);
  1318. return 0;
  1319. }
  1320. /** Decide if we're a publishable server. We are a publishable server if:
  1321. * - We don't have the ClientOnly option set
  1322. * and
  1323. * - We have the PublishServerDescriptor option set to non-empty
  1324. * and
  1325. * - We have ORPort set
  1326. * and
  1327. * - We believe we are reachable from the outside; or
  1328. * - We are an authoritative directory server.
  1329. */
  1330. static int
  1331. decide_if_publishable_server(void)
  1332. {
  1333. const or_options_t *options = get_options();
  1334. if (options->ClientOnly)
  1335. return 0;
  1336. if (options->PublishServerDescriptor_ == NO_DIRINFO)
  1337. return 0;
  1338. if (!server_mode(options))
  1339. return 0;
  1340. if (authdir_mode(options))
  1341. return 1;
  1342. if (!router_get_advertised_or_port(options))
  1343. return 0;
  1344. return check_whether_orport_reachable();
  1345. }
  1346. /** Initiate server descriptor upload as reasonable (if server is publishable,
  1347. * etc). <b>force</b> is as for router_upload_dir_desc_to_dirservers.
  1348. *
  1349. * We need to rebuild the descriptor if it's dirty even if we're not
  1350. * uploading, because our reachability testing *uses* our descriptor to
  1351. * determine what IP address and ports to test.
  1352. */
  1353. void
  1354. consider_publishable_server(int force)
  1355. {
  1356. int rebuilt;
  1357. if (!server_mode(get_options()))
  1358. return;
  1359. rebuilt = router_rebuild_descriptor(0);
  1360. if (decide_if_publishable_server()) {
  1361. set_server_advertised(1);
  1362. if (rebuilt == 0)
  1363. router_upload_dir_desc_to_dirservers(force);
  1364. } else {
  1365. set_server_advertised(0);
  1366. }
  1367. }
  1368. /** Return the port of the first active listener of type
  1369. * <b>listener_type</b>. */
  1370. /** XXX not a very good interface. it's not reliable when there are
  1371. multiple listeners. */
  1372. uint16_t
  1373. router_get_active_listener_port_by_type_af(int listener_type,
  1374. sa_family_t family)
  1375. {
  1376. /* Iterate all connections, find one of the right kind and return
  1377. the port. Not very sophisticated or fast, but effective. */
  1378. smartlist_t *conns = get_connection_array();
  1379. SMARTLIST_FOREACH_BEGIN(conns, connection_t *, conn) {
  1380. if (conn->type == listener_type && !conn->marked_for_close &&
  1381. conn->socket_family == family) {
  1382. return conn->port;
  1383. }
  1384. } SMARTLIST_FOREACH_END(conn);
  1385. return 0;
  1386. }
  1387. /** Return the port that we should advertise as our ORPort; this is either
  1388. * the one configured in the ORPort option, or the one we actually bound to
  1389. * if ORPort is "auto".
  1390. */
  1391. uint16_t
  1392. router_get_advertised_or_port(const or_options_t *options)
  1393. {
  1394. return router_get_advertised_or_port_by_af(options, AF_INET);
  1395. }
  1396. /** As router_get_advertised_or_port(), but allows an address family argument.
  1397. */
  1398. uint16_t
  1399. router_get_advertised_or_port_by_af(const or_options_t *options,
  1400. sa_family_t family)
  1401. {
  1402. int port = get_first_advertised_port_by_type_af(CONN_TYPE_OR_LISTENER,
  1403. family);
  1404. (void)options;
  1405. /* If the port is in 'auto' mode, we have to use
  1406. router_get_listener_port_by_type(). */
  1407. if (port == CFG_AUTO_PORT)
  1408. return router_get_active_listener_port_by_type_af(CONN_TYPE_OR_LISTENER,
  1409. family);
  1410. return port;
  1411. }
  1412. /** Return the port that we should advertise as our DirPort;
  1413. * this is one of three possibilities:
  1414. * The one that is passed as <b>dirport</b> if the DirPort option is 0, or
  1415. * the one configured in the DirPort option,
  1416. * or the one we actually bound to if DirPort is "auto". */
  1417. uint16_t
  1418. router_get_advertised_dir_port(const or_options_t *options, uint16_t dirport)
  1419. {
  1420. int dirport_configured = get_primary_dir_port();
  1421. (void)options;
  1422. if (!dirport_configured)
  1423. return dirport;
  1424. if (dirport_configured == CFG_AUTO_PORT)
  1425. return router_get_active_listener_port_by_type_af(CONN_TYPE_DIR_LISTENER,
  1426. AF_INET);
  1427. return dirport_configured;
  1428. }
  1429. /*
  1430. * OR descriptor generation.
  1431. */
  1432. /** My routerinfo. */
  1433. static routerinfo_t *desc_routerinfo = NULL;
  1434. /** My extrainfo */
  1435. static extrainfo_t *desc_extrainfo = NULL;
  1436. /** Why did we most recently decide to regenerate our descriptor? Used to
  1437. * tell the authorities why we're sending it to them. */
  1438. static const char *desc_gen_reason = NULL;
  1439. /** Since when has our descriptor been "clean"? 0 if we need to regenerate it
  1440. * now. */
  1441. static time_t desc_clean_since = 0;
  1442. /** Why did we mark the descriptor dirty? */
  1443. static const char *desc_dirty_reason = NULL;
  1444. /** Boolean: do we need to regenerate the above? */
  1445. static int desc_needs_upload = 0;
  1446. /** OR only: If <b>force</b> is true, or we haven't uploaded this
  1447. * descriptor successfully yet, try to upload our signed descriptor to
  1448. * all the directory servers we know about.
  1449. */
  1450. void
  1451. router_upload_dir_desc_to_dirservers(int force)
  1452. {
  1453. const routerinfo_t *ri;
  1454. extrainfo_t *ei;
  1455. char *msg;
  1456. size_t desc_len, extra_len = 0, total_len;
  1457. dirinfo_type_t auth = get_options()->PublishServerDescriptor_;
  1458. ri = router_get_my_routerinfo();
  1459. if (!ri) {
  1460. log_info(LD_GENERAL, "No descriptor; skipping upload");
  1461. return;
  1462. }
  1463. ei = router_get_my_extrainfo();
  1464. if (auth == NO_DIRINFO)
  1465. return;
  1466. if (!force && !desc_needs_upload)
  1467. return;
  1468. log_info(LD_OR, "Uploading relay descriptor to directory authorities%s",
  1469. force ? " (forced)" : "");
  1470. desc_needs_upload = 0;
  1471. desc_len = ri->cache_info.signed_descriptor_len;
  1472. extra_len = ei ? ei->cache_info.signed_descriptor_len : 0;
  1473. total_len = desc_len + extra_len + 1;
  1474. msg = tor_malloc(total_len);
  1475. memcpy(msg, ri->cache_info.signed_descriptor_body, desc_len);
  1476. if (ei) {
  1477. memcpy(msg+desc_len, ei->cache_info.signed_descriptor_body, extra_len);
  1478. }
  1479. msg[desc_len+extra_len] = 0;
  1480. directory_post_to_dirservers(DIR_PURPOSE_UPLOAD_DIR,
  1481. (auth & BRIDGE_DIRINFO) ?
  1482. ROUTER_PURPOSE_BRIDGE :
  1483. ROUTER_PURPOSE_GENERAL,
  1484. auth, msg, desc_len, extra_len);
  1485. tor_free(msg);
  1486. }
  1487. /** OR only: Check whether my exit policy says to allow connection to
  1488. * conn. Return 0 if we accept; non-0 if we reject.
  1489. */
  1490. int
  1491. router_compare_to_my_exit_policy(const tor_addr_t *addr, uint16_t port)
  1492. {
  1493. if (!router_get_my_routerinfo()) /* make sure desc_routerinfo exists */
  1494. return -1;
  1495. /* make sure it's resolved to something. this way we can't get a
  1496. 'maybe' below. */
  1497. if (tor_addr_is_null(addr))
  1498. return -1;
  1499. /* look at desc_routerinfo->exit_policy for both the v4 and the v6
  1500. * policies. The exit_policy field in desc_routerinfo is a bit unusual,
  1501. * in that it contains IPv6 and IPv6 entries. We don't want to look
  1502. * at desc_routerinfio->ipv6_exit_policy, since that's a port summary. */
  1503. if ((tor_addr_family(addr) == AF_INET ||
  1504. tor_addr_family(addr) == AF_INET6)) {
  1505. return compare_tor_addr_to_addr_policy(addr, port,
  1506. desc_routerinfo->exit_policy) != ADDR_POLICY_ACCEPTED;
  1507. #if 0
  1508. } else if (tor_addr_family(addr) == AF_INET6) {
  1509. return get_options()->IPv6Exit &&
  1510. desc_routerinfo->ipv6_exit_policy &&
  1511. compare_tor_addr_to_short_policy(addr, port,
  1512. desc_routerinfo->ipv6_exit_policy) != ADDR_POLICY_ACCEPTED;
  1513. #endif
  1514. } else {
  1515. return -1;
  1516. }
  1517. }
  1518. /** Return true iff my exit policy is reject *:*. Return -1 if we don't
  1519. * have a descriptor */
  1520. int
  1521. router_my_exit_policy_is_reject_star(void)
  1522. {
  1523. if (!router_get_my_routerinfo()) /* make sure desc_routerinfo exists */
  1524. return -1;
  1525. return desc_routerinfo->policy_is_reject_star;
  1526. }
  1527. /** Return true iff I'm a server and <b>digest</b> is equal to
  1528. * my server identity key digest. */
  1529. int
  1530. router_digest_is_me(const char *digest)
  1531. {
  1532. return (server_identitykey &&
  1533. tor_memeq(server_identitykey_digest, digest, DIGEST_LEN));
  1534. }
  1535. /** Return my identity digest. */
  1536. const uint8_t *
  1537. router_get_my_id_digest(void)
  1538. {
  1539. return (const uint8_t *)server_identitykey_digest;
  1540. }
  1541. /** Return true iff I'm a server and <b>digest</b> is equal to
  1542. * my identity digest. */
  1543. int
  1544. router_extrainfo_digest_is_me(const char *digest)
  1545. {
  1546. extrainfo_t *ei = router_get_my_extrainfo();
  1547. if (!ei)
  1548. return 0;
  1549. return tor_memeq(digest,
  1550. ei->cache_info.signed_descriptor_digest,
  1551. DIGEST_LEN);
  1552. }
  1553. /** A wrapper around router_digest_is_me(). */
  1554. int
  1555. router_is_me(const routerinfo_t *router)
  1556. {
  1557. return router_digest_is_me(router->cache_info.identity_digest);
  1558. }
  1559. /** Return a routerinfo for this OR, rebuilding a fresh one if
  1560. * necessary. Return NULL on error, or if called on an OP. */
  1561. const routerinfo_t *
  1562. router_get_my_routerinfo(void)
  1563. {
  1564. if (!server_mode(get_options()))
  1565. return NULL;
  1566. if (router_rebuild_descriptor(0))
  1567. return NULL;
  1568. return desc_routerinfo;
  1569. }
  1570. /** OR only: Return a signed server descriptor for this OR, rebuilding a fresh
  1571. * one if necessary. Return NULL on error.
  1572. */
  1573. const char *
  1574. router_get_my_descriptor(void)
  1575. {
  1576. const char *body;
  1577. if (!router_get_my_routerinfo())
  1578. return NULL;
  1579. /* Make sure this is nul-terminated. */
  1580. tor_assert(desc_routerinfo->cache_info.saved_location == SAVED_NOWHERE);
  1581. body = signed_descriptor_get_body(&desc_routerinfo->cache_info);
  1582. tor_assert(!body[desc_routerinfo->cache_info.signed_descriptor_len]);
  1583. log_debug(LD_GENERAL,"my desc is '%s'", body);
  1584. return body;
  1585. }
  1586. /** Return the extrainfo document for this OR, or NULL if we have none.
  1587. * Rebuilt it (and the server descriptor) if necessary. */
  1588. extrainfo_t *
  1589. router_get_my_extrainfo(void)
  1590. {
  1591. if (!server_mode(get_options()))
  1592. return NULL;
  1593. if (router_rebuild_descriptor(0))
  1594. return NULL;
  1595. return desc_extrainfo;
  1596. }
  1597. /** Return a human-readable string describing what triggered us to generate
  1598. * our current descriptor, or NULL if we don't know. */
  1599. const char *
  1600. router_get_descriptor_gen_reason(void)
  1601. {
  1602. return desc_gen_reason;
  1603. }
  1604. /** A list of nicknames that we've warned about including in our family
  1605. * declaration verbatim rather than as digests. */
  1606. static smartlist_t *warned_nonexistent_family = NULL;
  1607. static int router_guess_address_from_dir_headers(uint32_t *guess);
  1608. /** Make a current best guess at our address, either because
  1609. * it's configured in torrc, or because we've learned it from
  1610. * dirserver headers. Place the answer in *<b>addr</b> and return
  1611. * 0 on success, else return -1 if we have no guess. */
  1612. int
  1613. router_pick_published_address(const or_options_t *options, uint32_t *addr)
  1614. {
  1615. *addr = get_last_resolved_addr();
  1616. if (!*addr &&
  1617. resolve_my_address(LOG_INFO, options, addr, NULL, NULL) < 0) {
  1618. log_info(LD_CONFIG, "Could not determine our address locally. "
  1619. "Checking if directory headers provide any hints.");
  1620. if (router_guess_address_from_dir_headers(addr) < 0) {
  1621. log_info(LD_CONFIG, "No hints from directory headers either. "
  1622. "Will try again later.");
  1623. return -1;
  1624. }
  1625. }
  1626. log_info(LD_CONFIG,"Success: chose address '%s'.", fmt_addr32(*addr));
  1627. return 0;
  1628. }
  1629. /** If <b>force</b> is true, or our descriptor is out-of-date, rebuild a fresh
  1630. * routerinfo, signed server descriptor, and extra-info document for this OR.
  1631. * Return 0 on success, -1 on temporary error.
  1632. */
  1633. int
  1634. router_rebuild_descriptor(int force)
  1635. {
  1636. routerinfo_t *ri;
  1637. extrainfo_t *ei;
  1638. uint32_t addr;
  1639. char platform[256];
  1640. int hibernating = we_are_hibernating();
  1641. const or_options_t *options = get_options();
  1642. if (desc_clean_since && !force)
  1643. return 0;
  1644. if (router_pick_published_address(options, &addr) < 0 ||
  1645. router_get_advertised_or_port(options) == 0) {
  1646. /* Stop trying to rebuild our descriptor every second. We'll
  1647. * learn that it's time to try again when ip_address_changed()
  1648. * marks it dirty. */
  1649. desc_clean_since = time(NULL);
  1650. return -1;
  1651. }
  1652. log_info(LD_OR, "Rebuilding relay descriptor%s", force ? " (forced)" : "");
  1653. ri = tor_malloc_zero(sizeof(routerinfo_t));
  1654. ri->cache_info.routerlist_index = -1;
  1655. ri->nickname = tor_strdup(options->Nickname);
  1656. ri->addr = addr;
  1657. ri->or_port = router_get_advertised_or_port(options);
  1658. ri->dir_port = router_get_advertised_dir_port(options, 0);
  1659. ri->cache_info.published_on = time(NULL);
  1660. ri->onion_pkey = crypto_pk_dup_key(get_onion_key()); /* must invoke from
  1661. * main thread */
  1662. #ifdef CURVE25519_ENABLED
  1663. ri->onion_curve25519_pkey =
  1664. tor_memdup(&get_current_curve25519_keypair()->pubkey,
  1665. sizeof(curve25519_public_key_t));
  1666. #endif
  1667. /* For now, at most one IPv6 or-address is being advertised. */
  1668. {
  1669. const port_cfg_t *ipv6_orport = NULL;
  1670. SMARTLIST_FOREACH_BEGIN(get_configured_ports(), const port_cfg_t *, p) {
  1671. if (p->type == CONN_TYPE_OR_LISTENER &&
  1672. ! p->no_advertise &&
  1673. ! p->bind_ipv4_only &&
  1674. tor_addr_family(&p->addr) == AF_INET6) {
  1675. if (! tor_addr_is_internal(&p->addr, 0)) {
  1676. ipv6_orport = p;
  1677. break;
  1678. } else {
  1679. char addrbuf[TOR_ADDR_BUF_LEN];
  1680. log_warn(LD_CONFIG,
  1681. "Unable to use configured IPv6 address \"%s\" in a "
  1682. "descriptor. Skipping it. "
  1683. "Try specifying a globally reachable address explicitly. ",
  1684. tor_addr_to_str(addrbuf, &p->addr, sizeof(addrbuf), 1));
  1685. }
  1686. }
  1687. } SMARTLIST_FOREACH_END(p);
  1688. if (ipv6_orport) {
  1689. tor_addr_copy(&ri->ipv6_addr, &ipv6_orport->addr);
  1690. ri->ipv6_orport = ipv6_orport->port;
  1691. }
  1692. }
  1693. ri->identity_pkey = crypto_pk_dup_key(get_server_identity_key());
  1694. if (crypto_pk_get_digest(ri->identity_pkey,
  1695. ri->cache_info.identity_digest)<0) {
  1696. routerinfo_free(ri);
  1697. return -1;
  1698. }
  1699. get_platform_str(platform, sizeof(platform));
  1700. ri->platform = tor_strdup(platform);
  1701. /* compute ri->bandwidthrate as the min of various options */
  1702. ri->bandwidthrate = get_effective_bwrate(options);
  1703. /* and compute ri->bandwidthburst similarly */
  1704. ri->bandwidthburst = get_effective_bwburst(options);
  1705. ri->bandwidthcapacity = hibernating ? 0 : rep_hist_bandwidth_assess();
  1706. if (dns_seems_to_be_broken() || has_dns_init_failed()) {
  1707. /* DNS is screwed up; don't claim to be an exit. */
  1708. policies_exit_policy_append_reject_star(&ri->exit_policy);
  1709. } else {
  1710. policies_parse_exit_policy(options->ExitPolicy, &ri->exit_policy,
  1711. options->IPv6Exit,
  1712. options->ExitPolicyRejectPrivate,
  1713. ri->addr, !options->BridgeRelay);
  1714. }
  1715. ri->policy_is_reject_star =
  1716. policy_is_reject_star(ri->exit_policy, AF_INET) &&
  1717. policy_is_reject_star(ri->exit_policy, AF_INET6);
  1718. if (options->IPv6Exit) {
  1719. char *p_tmp = policy_summarize(ri->exit_policy, AF_INET6);
  1720. if (p_tmp)
  1721. ri->ipv6_exit_policy = parse_short_policy(p_tmp);
  1722. tor_free(p_tmp);
  1723. }
  1724. if (options->MyFamily && ! options->BridgeRelay) {
  1725. smartlist_t *family;
  1726. if (!warned_nonexistent_family)
  1727. warned_nonexistent_family = smartlist_new();
  1728. family = smartlist_new();
  1729. ri->declared_family = smartlist_new();
  1730. smartlist_split_string(family, options->MyFamily, ",",
  1731. SPLIT_SKIP_SPACE|SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  1732. SMARTLIST_FOREACH_BEGIN(family, char *, name) {
  1733. const node_t *member;
  1734. if (!strcasecmp(name, options->Nickname))
  1735. goto skip; /* Don't list ourself, that's redundant */
  1736. else
  1737. member = node_get_by_nickname(name, 1);
  1738. if (!member) {
  1739. int is_legal = is_legal_nickname_or_hexdigest(name);
  1740. if (!smartlist_contains_string(warned_nonexistent_family, name) &&
  1741. !is_legal_hexdigest(name)) {
  1742. if (is_legal)
  1743. log_warn(LD_CONFIG,
  1744. "I have no descriptor for the router named \"%s\" in my "
  1745. "declared family; I'll use the nickname as is, but "
  1746. "this may confuse clients.", name);
  1747. else
  1748. log_warn(LD_CONFIG, "There is a router named \"%s\" in my "
  1749. "declared family, but that isn't a legal nickname. "
  1750. "Skipping it.", escaped(name));
  1751. smartlist_add(warned_nonexistent_family, tor_strdup(name));
  1752. }
  1753. if (is_legal) {
  1754. smartlist_add(ri->declared_family, name);
  1755. name = NULL;
  1756. }
  1757. } else if (router_digest_is_me(member->identity)) {
  1758. /* Don't list ourself in our own family; that's redundant */
  1759. /* XXX shouldn't be possible */
  1760. } else {
  1761. char *fp = tor_malloc(HEX_DIGEST_LEN+2);
  1762. fp[0] = '$';
  1763. base16_encode(fp+1,HEX_DIGEST_LEN+1,
  1764. member->identity, DIGEST_LEN);
  1765. smartlist_add(ri->declared_family, fp);
  1766. if (smartlist_contains_string(warned_nonexistent_family, name))
  1767. smartlist_string_remove(warned_nonexistent_family, name);
  1768. }
  1769. skip:
  1770. tor_free(name);
  1771. } SMARTLIST_FOREACH_END(name);
  1772. /* remove duplicates from the list */
  1773. smartlist_sort_strings(ri->declared_family);
  1774. smartlist_uniq_strings(ri->declared_family);
  1775. smartlist_free(family);
  1776. }
  1777. /* Now generate the extrainfo. */
  1778. ei = tor_malloc_zero(sizeof(extrainfo_t));
  1779. ei->cache_info.is_extrainfo = 1;
  1780. strlcpy(ei->nickname, get_options()->Nickname, sizeof(ei->nickname));
  1781. ei->cache_info.published_on = ri->cache_info.published_on;
  1782. memcpy(ei->cache_info.identity_digest, ri->cache_info.identity_digest,
  1783. DIGEST_LEN);
  1784. if (extrainfo_dump_to_string(&ei->cache_info.signed_descriptor_body,
  1785. ei, get_server_identity_key()) < 0) {
  1786. log_warn(LD_BUG, "Couldn't generate extra-info descriptor.");
  1787. extrainfo_free(ei);
  1788. ei = NULL;
  1789. } else {
  1790. ei->cache_info.signed_descriptor_len =
  1791. strlen(ei->cache_info.signed_descriptor_body);
  1792. router_get_extrainfo_hash(ei->cache_info.signed_descriptor_body,
  1793. ei->cache_info.signed_descriptor_len,
  1794. ei->cache_info.signed_descriptor_digest);
  1795. }
  1796. /* Now finish the router descriptor. */
  1797. if (ei) {
  1798. memcpy(ri->cache_info.extra_info_digest,
  1799. ei->cache_info.signed_descriptor_digest,
  1800. DIGEST_LEN);
  1801. } else {
  1802. /* ri was allocated with tor_malloc_zero, so there is no need to
  1803. * zero ri->cache_info.extra_info_digest here. */
  1804. }
  1805. if (! (ri->cache_info.signed_descriptor_body = router_dump_router_to_string(
  1806. ri, get_server_identity_key()))) {
  1807. log_warn(LD_BUG, "Couldn't generate router descriptor.");
  1808. routerinfo_free(ri);
  1809. extrainfo_free(ei);
  1810. return -1;
  1811. }
  1812. ri->cache_info.signed_descriptor_len =
  1813. strlen(ri->cache_info.signed_descriptor_body);
  1814. ri->purpose =
  1815. options->BridgeRelay ? ROUTER_PURPOSE_BRIDGE : ROUTER_PURPOSE_GENERAL;
  1816. if (options->BridgeRelay) {
  1817. /* Bridges shouldn't be able to send their descriptors unencrypted,
  1818. anyway, since they don't have a DirPort, and always connect to the
  1819. bridge authority anonymously. But just in case they somehow think of
  1820. sending them on an unencrypted connection, don't allow them to try. */
  1821. ri->cache_info.send_unencrypted = 0;
  1822. if (ei)
  1823. ei->cache_info.send_unencrypted = 0;
  1824. } else {
  1825. ri->cache_info.send_unencrypted = 1;
  1826. if (ei)
  1827. ei->cache_info.send_unencrypted = 1;
  1828. }
  1829. router_get_router_hash(ri->cache_info.signed_descriptor_body,
  1830. strlen(ri->cache_info.signed_descriptor_body),
  1831. ri->cache_info.signed_descriptor_digest);
  1832. if (ei) {
  1833. tor_assert(! routerinfo_incompatible_with_extrainfo(ri, ei, NULL, NULL));
  1834. }
  1835. routerinfo_free(desc_routerinfo);
  1836. desc_routerinfo = ri;
  1837. extrainfo_free(desc_extrainfo);
  1838. desc_extrainfo = ei;
  1839. desc_clean_since = time(NULL);
  1840. desc_needs_upload = 1;
  1841. desc_gen_reason = desc_dirty_reason;
  1842. desc_dirty_reason = NULL;
  1843. control_event_my_descriptor_changed();
  1844. return 0;
  1845. }
  1846. /** If our router descriptor ever goes this long without being regenerated
  1847. * because something changed, we force an immediate regenerate-and-upload. */
  1848. #define FORCE_REGENERATE_DESCRIPTOR_INTERVAL (18*60*60)
  1849. /** If our router descriptor seems to be missing or unacceptable according
  1850. * to the authorities, regenerate and reupload it _this_ often. */
  1851. #define FAST_RETRY_DESCRIPTOR_INTERVAL (90*60)
  1852. /** Mark descriptor out of date if it's been "too long" since we last tried
  1853. * to upload one. */
  1854. void
  1855. mark_my_descriptor_dirty_if_too_old(time_t now)
  1856. {
  1857. networkstatus_t *ns;
  1858. const routerstatus_t *rs;
  1859. const char *retry_fast_reason = NULL; /* Set if we should retry frequently */
  1860. const time_t slow_cutoff = now - FORCE_REGENERATE_DESCRIPTOR_INTERVAL;
  1861. const time_t fast_cutoff = now - FAST_RETRY_DESCRIPTOR_INTERVAL;
  1862. /* If it's already dirty, don't mark it. */
  1863. if (! desc_clean_since)
  1864. return;
  1865. /* If it's older than FORCE_REGENERATE_DESCRIPTOR_INTERVAL, it's always
  1866. * time to rebuild it. */
  1867. if (desc_clean_since < slow_cutoff) {
  1868. mark_my_descriptor_dirty("time for new descriptor");
  1869. return;
  1870. }
  1871. /* Now we see whether we want to be retrying frequently or no. The
  1872. * rule here is that we'll retry frequently if we aren't listed in the
  1873. * live consensus we have, or if the publication time of the
  1874. * descriptor listed for us in the consensus is very old. */
  1875. ns = networkstatus_get_live_consensus(now);
  1876. if (ns) {
  1877. rs = networkstatus_vote_find_entry(ns, server_identitykey_digest);
  1878. if (rs == NULL)
  1879. retry_fast_reason = "not listed in consensus";
  1880. else if (rs->published_on < slow_cutoff)
  1881. retry_fast_reason = "version listed in consensus is quite old";
  1882. }
  1883. if (retry_fast_reason && desc_clean_since < fast_cutoff)
  1884. mark_my_descriptor_dirty(retry_fast_reason);
  1885. }
  1886. /** Call when the current descriptor is out of date. */
  1887. void
  1888. mark_my_descriptor_dirty(const char *reason)
  1889. {
  1890. const or_options_t *options = get_options();
  1891. if (server_mode(options) && options->PublishServerDescriptor_)
  1892. log_info(LD_OR, "Decided to publish new relay descriptor: %s", reason);
  1893. desc_clean_since = 0;
  1894. if (!desc_dirty_reason)
  1895. desc_dirty_reason = reason;
  1896. }
  1897. /** How frequently will we republish our descriptor because of large (factor
  1898. * of 2) shifts in estimated bandwidth? */
  1899. #define MAX_BANDWIDTH_CHANGE_FREQ (20*60)
  1900. /** Check whether bandwidth has changed a lot since the last time we announced
  1901. * bandwidth. If so, mark our descriptor dirty. */
  1902. void
  1903. check_descriptor_bandwidth_changed(time_t now)
  1904. {
  1905. static time_t last_changed = 0;
  1906. uint64_t prev, cur;
  1907. if (!desc_routerinfo)
  1908. return;
  1909. prev = desc_routerinfo->bandwidthcapacity;
  1910. cur = we_are_hibernating() ? 0 : rep_hist_bandwidth_assess();
  1911. if ((prev != cur && (!prev || !cur)) ||
  1912. cur > prev*2 ||
  1913. cur < prev/2) {
  1914. if (last_changed+MAX_BANDWIDTH_CHANGE_FREQ < now) {
  1915. log_info(LD_GENERAL,
  1916. "Measured bandwidth has changed; rebuilding descriptor.");
  1917. mark_my_descriptor_dirty("bandwidth has changed");
  1918. last_changed = now;
  1919. }
  1920. }
  1921. }
  1922. /** Note at log level severity that our best guess of address has changed from
  1923. * <b>prev</b> to <b>cur</b>. */
  1924. static void
  1925. log_addr_has_changed(int severity,
  1926. const tor_addr_t *prev,
  1927. const tor_addr_t *cur,
  1928. const char *source)
  1929. {
  1930. char addrbuf_prev[TOR_ADDR_BUF_LEN];
  1931. char addrbuf_cur[TOR_ADDR_BUF_LEN];
  1932. if (tor_addr_to_str(addrbuf_prev, prev, sizeof(addrbuf_prev), 1) == NULL)
  1933. strlcpy(addrbuf_prev, "???", TOR_ADDR_BUF_LEN);
  1934. if (tor_addr_to_str(addrbuf_cur, cur, sizeof(addrbuf_cur), 1) == NULL)
  1935. strlcpy(addrbuf_cur, "???", TOR_ADDR_BUF_LEN);
  1936. if (!tor_addr_is_null(prev))
  1937. log_fn(severity, LD_GENERAL,
  1938. "Our IP Address has changed from %s to %s; "
  1939. "rebuilding descriptor (source: %s).",
  1940. addrbuf_prev, addrbuf_cur, source);
  1941. else
  1942. log_notice(LD_GENERAL,
  1943. "Guessed our IP address as %s (source: %s).",
  1944. addrbuf_cur, source);
  1945. }
  1946. /** Check whether our own address as defined by the Address configuration
  1947. * has changed. This is for routers that get their address from a service
  1948. * like dyndns. If our address has changed, mark our descriptor dirty. */
  1949. void
  1950. check_descriptor_ipaddress_changed(time_t now)
  1951. {
  1952. uint32_t prev, cur;
  1953. const or_options_t *options = get_options();
  1954. const char *method = NULL;
  1955. char *hostname = NULL;
  1956. (void) now;
  1957. if (!desc_routerinfo)
  1958. return;
  1959. /* XXXX ipv6 */
  1960. prev = desc_routerinfo->addr;
  1961. if (resolve_my_address(LOG_INFO, options, &cur, &method, &hostname) < 0) {
  1962. log_info(LD_CONFIG,"options->Address didn't resolve into an IP.");
  1963. return;
  1964. }
  1965. if (prev != cur) {
  1966. char *source;
  1967. tor_addr_t tmp_prev, tmp_cur;
  1968. tor_addr_from_ipv4h(&tmp_prev, prev);
  1969. tor_addr_from_ipv4h(&tmp_cur, cur);
  1970. tor_asprintf(&source, "METHOD=%s%s%s", method,
  1971. hostname ? " HOSTNAME=" : "",
  1972. hostname ? hostname : "");
  1973. log_addr_has_changed(LOG_NOTICE, &tmp_prev, &tmp_cur, source);
  1974. tor_free(source);
  1975. ip_address_changed(0);
  1976. }
  1977. tor_free(hostname);
  1978. }
  1979. /** The most recently guessed value of our IP address, based on directory
  1980. * headers. */
  1981. static tor_addr_t last_guessed_ip = TOR_ADDR_NULL;
  1982. /** A directory server <b>d_conn</b> told us our IP address is
  1983. * <b>suggestion</b>.
  1984. * If this address is different from the one we think we are now, and
  1985. * if our computer doesn't actually know its IP address, then switch. */
  1986. void
  1987. router_new_address_suggestion(const char *suggestion,
  1988. const dir_connection_t *d_conn)
  1989. {
  1990. tor_addr_t addr;
  1991. uint32_t cur = 0; /* Current IPv4 address. */
  1992. const or_options_t *options = get_options();
  1993. /* first, learn what the IP address actually is */
  1994. if (tor_addr_parse(&addr, suggestion) == -1) {
  1995. log_debug(LD_DIR, "Malformed X-Your-Address-Is header %s. Ignoring.",
  1996. escaped(suggestion));
  1997. return;
  1998. }
  1999. log_debug(LD_DIR, "Got X-Your-Address-Is: %s.", suggestion);
  2000. if (!server_mode(options)) {
  2001. tor_addr_copy(&last_guessed_ip, &addr);
  2002. return;
  2003. }
  2004. /* XXXX ipv6 */
  2005. cur = get_last_resolved_addr();
  2006. if (cur ||
  2007. resolve_my_address(LOG_INFO, options, &cur, NULL, NULL) >= 0) {
  2008. /* We're all set -- we already know our address. Great. */
  2009. tor_addr_from_ipv4h(&last_guessed_ip, cur); /* store it in case we
  2010. need it later */
  2011. return;
  2012. }
  2013. if (tor_addr_is_internal(&addr, 0)) {
  2014. /* Don't believe anybody who says our IP is, say, 127.0.0.1. */
  2015. return;
  2016. }
  2017. if (tor_addr_eq(&d_conn->base_.addr, &addr)) {
  2018. /* Don't believe anybody who says our IP is their IP. */
  2019. log_debug(LD_DIR, "A directory server told us our IP address is %s, "
  2020. "but he's just reporting his own IP address. Ignoring.",
  2021. suggestion);
  2022. return;
  2023. }
  2024. /* Okay. We can't resolve our own address, and X-Your-Address-Is is giving
  2025. * us an answer different from what we had the last time we managed to
  2026. * resolve it. */
  2027. if (!tor_addr_eq(&last_guessed_ip, &addr)) {
  2028. control_event_server_status(LOG_NOTICE,
  2029. "EXTERNAL_ADDRESS ADDRESS=%s METHOD=DIRSERV",
  2030. suggestion);
  2031. log_addr_has_changed(LOG_NOTICE, &last_guessed_ip, &addr,
  2032. d_conn->base_.address);
  2033. ip_address_changed(0);
  2034. tor_addr_copy(&last_guessed_ip, &addr); /* router_rebuild_descriptor()
  2035. will fetch it */
  2036. }
  2037. }
  2038. /** We failed to resolve our address locally, but we'd like to build
  2039. * a descriptor and publish / test reachability. If we have a guess
  2040. * about our address based on directory headers, answer it and return
  2041. * 0; else return -1. */
  2042. static int
  2043. router_guess_address_from_dir_headers(uint32_t *guess)
  2044. {
  2045. if (!tor_addr_is_null(&last_guessed_ip)) {
  2046. *guess = tor_addr_to_ipv4h(&last_guessed_ip);
  2047. return 0;
  2048. }
  2049. return -1;
  2050. }
  2051. /** Set <b>platform</b> (max length <b>len</b>) to a NUL-terminated short
  2052. * string describing the version of Tor and the operating system we're
  2053. * currently running on.
  2054. */
  2055. STATIC void
  2056. get_platform_str(char *platform, size_t len)
  2057. {
  2058. tor_snprintf(platform, len, "Tor %s on %s",
  2059. get_short_version(), get_uname());
  2060. }
  2061. /* XXX need to audit this thing and count fenceposts. maybe
  2062. * refactor so we don't have to keep asking if we're
  2063. * near the end of maxlen?
  2064. */
  2065. #define DEBUG_ROUTER_DUMP_ROUTER_TO_STRING
  2066. /** OR only: Given a routerinfo for this router, and an identity key to sign
  2067. * with, encode the routerinfo as a signed server descriptor and return a new
  2068. * string encoding the result, or NULL on failure.
  2069. */
  2070. char *
  2071. router_dump_router_to_string(routerinfo_t *router,
  2072. crypto_pk_t *ident_key)
  2073. {
  2074. char *address = NULL;
  2075. char *onion_pkey = NULL; /* Onion key, PEM-encoded. */
  2076. char *identity_pkey = NULL; /* Identity key, PEM-encoded. */
  2077. char digest[DIGEST_LEN];
  2078. char published[ISO_TIME_LEN+1];
  2079. char fingerprint[FINGERPRINT_LEN+1];
  2080. int has_extra_info_digest;
  2081. char extra_info_digest[HEX_DIGEST_LEN+1];
  2082. size_t onion_pkeylen, identity_pkeylen;
  2083. char *family_line = NULL;
  2084. char *extra_or_address = NULL;
  2085. const or_options_t *options = get_options();
  2086. smartlist_t *chunks = NULL;
  2087. char *output = NULL;
  2088. /* Make sure the identity key matches the one in the routerinfo. */
  2089. if (!crypto_pk_eq_keys(ident_key, router->identity_pkey)) {
  2090. log_warn(LD_BUG,"Tried to sign a router with a private key that didn't "
  2091. "match router's public key!");
  2092. goto err;
  2093. }
  2094. /* record our fingerprint, so we can include it in the descriptor */
  2095. if (crypto_pk_get_fingerprint(router->identity_pkey, fingerprint, 1)<0) {
  2096. log_err(LD_BUG,"Error computing fingerprint");
  2097. goto err;
  2098. }
  2099. /* PEM-encode the onion key */
  2100. if (crypto_pk_write_public_key_to_string(router->onion_pkey,
  2101. &onion_pkey,&onion_pkeylen)<0) {
  2102. log_warn(LD_BUG,"write onion_pkey to string failed!");
  2103. goto err;
  2104. }
  2105. /* PEM-encode the identity key */
  2106. if (crypto_pk_write_public_key_to_string(router->identity_pkey,
  2107. &identity_pkey,&identity_pkeylen)<0) {
  2108. log_warn(LD_BUG,"write identity_pkey to string failed!");
  2109. goto err;
  2110. }
  2111. /* Encode the publication time. */
  2112. format_iso_time(published, router->cache_info.published_on);
  2113. if (router->declared_family && smartlist_len(router->declared_family)) {
  2114. char *family = smartlist_join_strings(router->declared_family,
  2115. " ", 0, NULL);
  2116. tor_asprintf(&family_line, "family %s\n", family);
  2117. tor_free(family);
  2118. } else {
  2119. family_line = tor_strdup("");
  2120. }
  2121. has_extra_info_digest =
  2122. ! tor_digest_is_zero(router->cache_info.extra_info_digest);
  2123. if (has_extra_info_digest) {
  2124. base16_encode(extra_info_digest, sizeof(extra_info_digest),
  2125. router->cache_info.extra_info_digest, DIGEST_LEN);
  2126. }
  2127. if (router->ipv6_orport &&
  2128. tor_addr_family(&router->ipv6_addr) == AF_INET6) {
  2129. char addr[TOR_ADDR_BUF_LEN];
  2130. const char *a;
  2131. a = tor_addr_to_str(addr, &router->ipv6_addr, sizeof(addr), 1);
  2132. if (a) {
  2133. tor_asprintf(&extra_or_address,
  2134. "or-address %s:%d\n", a, router->ipv6_orport);
  2135. log_debug(LD_OR, "My or-address line is <%s>", extra_or_address);
  2136. }
  2137. }
  2138. address = tor_dup_ip(router->addr);
  2139. chunks = smartlist_new();
  2140. /* Generate the easy portion of the router descriptor. */
  2141. smartlist_add_asprintf(chunks,
  2142. "router %s %s %d 0 %d\n"
  2143. "%s"
  2144. "platform %s\n"
  2145. "protocols Link 1 2 Circuit 1\n"
  2146. "published %s\n"
  2147. "fingerprint %s\n"
  2148. "uptime %ld\n"
  2149. "bandwidth %d %d %d\n"
  2150. "%s%s%s%s"
  2151. "onion-key\n%s"
  2152. "signing-key\n%s"
  2153. "%s%s%s%s",
  2154. router->nickname,
  2155. address,
  2156. router->or_port,
  2157. decide_to_advertise_dirport(options, router->dir_port),
  2158. extra_or_address ? extra_or_address : "",
  2159. router->platform,
  2160. published,
  2161. fingerprint,
  2162. stats_n_seconds_working,
  2163. (int) router->bandwidthrate,
  2164. (int) router->bandwidthburst,
  2165. (int) router->bandwidthcapacity,
  2166. has_extra_info_digest ? "extra-info-digest " : "",
  2167. has_extra_info_digest ? extra_info_digest : "",
  2168. has_extra_info_digest ? "\n" : "",
  2169. options->DownloadExtraInfo ? "caches-extra-info\n" : "",
  2170. onion_pkey, identity_pkey,
  2171. family_line,
  2172. we_are_hibernating() ? "hibernating 1\n" : "",
  2173. options->HidServDirectoryV2 ? "hidden-service-dir\n" : "",
  2174. options->AllowSingleHopExits ? "allow-single-hop-exits\n" : "");
  2175. if (options->ContactInfo && strlen(options->ContactInfo)) {
  2176. const char *ci = options->ContactInfo;
  2177. if (strchr(ci, '\n') || strchr(ci, '\r'))
  2178. ci = escaped(ci);
  2179. smartlist_add_asprintf(chunks, "contact %s\n", ci);
  2180. }
  2181. #ifdef CURVE25519_ENABLED
  2182. if (router->onion_curve25519_pkey) {
  2183. char kbuf[128];
  2184. base64_encode(kbuf, sizeof(kbuf),
  2185. (const char *)router->onion_curve25519_pkey->public_key,
  2186. CURVE25519_PUBKEY_LEN);
  2187. smartlist_add_asprintf(chunks, "ntor-onion-key %s", kbuf);
  2188. }
  2189. #endif
  2190. /* Write the exit policy to the end of 's'. */
  2191. if (!router->exit_policy || !smartlist_len(router->exit_policy)) {
  2192. smartlist_add(chunks, tor_strdup("reject *:*\n"));
  2193. } else if (router->exit_policy) {
  2194. int i;
  2195. for (i = 0; i < smartlist_len(router->exit_policy); ++i) {
  2196. char pbuf[POLICY_BUF_LEN];
  2197. addr_policy_t *tmpe = smartlist_get(router->exit_policy, i);
  2198. int result;
  2199. if (tor_addr_family(&tmpe->addr) == AF_INET6)
  2200. continue; /* Don't include IPv6 parts of address policy */
  2201. result = policy_write_item(pbuf, POLICY_BUF_LEN, tmpe, 1);
  2202. if (result < 0) {
  2203. log_warn(LD_BUG,"descriptor policy_write_item ran out of room!");
  2204. goto err;
  2205. }
  2206. smartlist_add_asprintf(chunks, "%s\n", pbuf);
  2207. }
  2208. }
  2209. if (router->ipv6_exit_policy) {
  2210. char *p6 = write_short_policy(router->ipv6_exit_policy);
  2211. if (p6 && strcmp(p6, "reject 1-65535")) {
  2212. smartlist_add_asprintf(chunks,
  2213. "ipv6-policy %s\n", p6);
  2214. }
  2215. tor_free(p6);
  2216. }
  2217. /* Sign the descriptor */
  2218. smartlist_add(chunks, tor_strdup("router-signature\n"));
  2219. crypto_digest_smartlist(digest, DIGEST_LEN, chunks, "", DIGEST_SHA1);
  2220. note_crypto_pk_op(SIGN_RTR);
  2221. {
  2222. char *sig;
  2223. if (!(sig = router_get_dirobj_signature(digest, DIGEST_LEN, ident_key))) {
  2224. log_warn(LD_BUG, "Couldn't sign router descriptor");
  2225. goto err;
  2226. }
  2227. smartlist_add(chunks, sig);
  2228. }
  2229. /* include a last '\n' */
  2230. smartlist_add(chunks, tor_strdup("\n"));
  2231. output = smartlist_join_strings(chunks, "", 0, NULL);
  2232. #ifdef DEBUG_ROUTER_DUMP_ROUTER_TO_STRING
  2233. {
  2234. char *s_dup;
  2235. const char *cp;
  2236. routerinfo_t *ri_tmp;
  2237. cp = s_dup = tor_strdup(output);
  2238. ri_tmp = router_parse_entry_from_string(cp, NULL, 1, 0, NULL);
  2239. if (!ri_tmp) {
  2240. log_err(LD_BUG,
  2241. "We just generated a router descriptor we can't parse.");
  2242. log_err(LD_BUG, "Descriptor was: <<%s>>", output);
  2243. goto err;
  2244. }
  2245. tor_free(s_dup);
  2246. routerinfo_free(ri_tmp);
  2247. }
  2248. #endif
  2249. goto done;
  2250. err:
  2251. tor_free(output); /* sets output to NULL */
  2252. done:
  2253. if (chunks) {
  2254. SMARTLIST_FOREACH(chunks, char *, cp, tor_free(cp));
  2255. smartlist_free(chunks);
  2256. }
  2257. tor_free(address);
  2258. tor_free(family_line);
  2259. tor_free(onion_pkey);
  2260. tor_free(identity_pkey);
  2261. tor_free(extra_or_address);
  2262. return output;
  2263. }
  2264. /** Copy the primary (IPv4) OR port (IP address and TCP port) for
  2265. * <b>router</b> into *<b>ap_out</b>. */
  2266. void
  2267. router_get_prim_orport(const routerinfo_t *router, tor_addr_port_t *ap_out)
  2268. {
  2269. tor_assert(ap_out != NULL);
  2270. tor_addr_from_ipv4h(&ap_out->addr, router->addr);
  2271. ap_out->port = router->or_port;
  2272. }
  2273. /** Return 1 if any of <b>router</b>'s addresses are <b>addr</b>.
  2274. * Otherwise return 0. */
  2275. int
  2276. router_has_addr(const routerinfo_t *router, const tor_addr_t *addr)
  2277. {
  2278. return
  2279. tor_addr_eq_ipv4h(addr, router->addr) ||
  2280. tor_addr_eq(&router->ipv6_addr, addr);
  2281. }
  2282. int
  2283. router_has_orport(const routerinfo_t *router, const tor_addr_port_t *orport)
  2284. {
  2285. return
  2286. (tor_addr_eq_ipv4h(&orport->addr, router->addr) &&
  2287. orport->port == router->or_port) ||
  2288. (tor_addr_eq(&orport->addr, &router->ipv6_addr) &&
  2289. orport->port == router->ipv6_orport);
  2290. }
  2291. /** Load the contents of <b>filename</b>, find the last line starting with
  2292. * <b>end_line</b>, ensure that its timestamp is not more than 25 hours in
  2293. * the past or more than 1 hour in the future with respect to <b>now</b>,
  2294. * and write the file contents starting with that line to *<b>out</b>.
  2295. * Return 1 for success, 0 if the file does not exist, or -1 if the file
  2296. * does not contain a line matching these criteria or other failure. */
  2297. static int
  2298. load_stats_file(const char *filename, const char *end_line, time_t now,
  2299. char **out)
  2300. {
  2301. int r = -1;
  2302. char *fname = get_datadir_fname(filename);
  2303. char *contents, *start = NULL, *tmp, timestr[ISO_TIME_LEN+1];
  2304. time_t written;
  2305. switch (file_status(fname)) {
  2306. case FN_FILE:
  2307. /* X022 Find an alternative to reading the whole file to memory. */
  2308. if ((contents = read_file_to_str(fname, 0, NULL))) {
  2309. tmp = strstr(contents, end_line);
  2310. /* Find last block starting with end_line */
  2311. while (tmp) {
  2312. start = tmp;
  2313. tmp = strstr(tmp + 1, end_line);
  2314. }
  2315. if (!start)
  2316. goto notfound;
  2317. if (strlen(start) < strlen(end_line) + 1 + sizeof(timestr))
  2318. goto notfound;
  2319. strlcpy(timestr, start + 1 + strlen(end_line), sizeof(timestr));
  2320. if (parse_iso_time(timestr, &written) < 0)
  2321. goto notfound;
  2322. if (written < now - (25*60*60) || written > now + (1*60*60))
  2323. goto notfound;
  2324. *out = tor_strdup(start);
  2325. r = 1;
  2326. }
  2327. notfound:
  2328. tor_free(contents);
  2329. break;
  2330. case FN_NOENT:
  2331. r = 0;
  2332. break;
  2333. case FN_ERROR:
  2334. case FN_DIR:
  2335. default:
  2336. break;
  2337. }
  2338. tor_free(fname);
  2339. return r;
  2340. }
  2341. /** Write the contents of <b>extrainfo</b> and aggregated statistics to
  2342. * *<b>s_out</b>, signing them with <b>ident_key</b>. Return 0 on
  2343. * success, negative on failure. */
  2344. int
  2345. extrainfo_dump_to_string(char **s_out, extrainfo_t *extrainfo,
  2346. crypto_pk_t *ident_key)
  2347. {
  2348. const or_options_t *options = get_options();
  2349. char identity[HEX_DIGEST_LEN+1];
  2350. char published[ISO_TIME_LEN+1];
  2351. char digest[DIGEST_LEN];
  2352. char *bandwidth_usage;
  2353. int result;
  2354. static int write_stats_to_extrainfo = 1;
  2355. char sig[DIROBJ_MAX_SIG_LEN+1];
  2356. char *s, *pre, *contents, *cp, *s_dup = NULL;
  2357. time_t now = time(NULL);
  2358. smartlist_t *chunks = smartlist_new();
  2359. extrainfo_t *ei_tmp = NULL;
  2360. base16_encode(identity, sizeof(identity),
  2361. extrainfo->cache_info.identity_digest, DIGEST_LEN);
  2362. format_iso_time(published, extrainfo->cache_info.published_on);
  2363. bandwidth_usage = rep_hist_get_bandwidth_lines();
  2364. tor_asprintf(&pre, "extra-info %s %s\npublished %s\n%s",
  2365. extrainfo->nickname, identity,
  2366. published, bandwidth_usage);
  2367. tor_free(bandwidth_usage);
  2368. smartlist_add(chunks, pre);
  2369. if (geoip_is_loaded(AF_INET))
  2370. smartlist_add_asprintf(chunks, "geoip-db-digest %s\n",
  2371. geoip_db_digest(AF_INET));
  2372. if (geoip_is_loaded(AF_INET6))
  2373. smartlist_add_asprintf(chunks, "geoip6-db-digest %s\n",
  2374. geoip_db_digest(AF_INET6));
  2375. if (options->ExtraInfoStatistics && write_stats_to_extrainfo) {
  2376. log_info(LD_GENERAL, "Adding stats to extra-info descriptor.");
  2377. if (options->DirReqStatistics &&
  2378. load_stats_file("stats"PATH_SEPARATOR"dirreq-stats",
  2379. "dirreq-stats-end", now, &contents) > 0) {
  2380. smartlist_add(chunks, contents);
  2381. }
  2382. if (options->EntryStatistics &&
  2383. load_stats_file("stats"PATH_SEPARATOR"entry-stats",
  2384. "entry-stats-end", now, &contents) > 0) {
  2385. smartlist_add(chunks, contents);
  2386. }
  2387. if (options->CellStatistics &&
  2388. load_stats_file("stats"PATH_SEPARATOR"buffer-stats",
  2389. "cell-stats-end", now, &contents) > 0) {
  2390. smartlist_add(chunks, contents);
  2391. }
  2392. if (options->ExitPortStatistics &&
  2393. load_stats_file("stats"PATH_SEPARATOR"exit-stats",
  2394. "exit-stats-end", now, &contents) > 0) {
  2395. smartlist_add(chunks, contents);
  2396. }
  2397. if (options->ConnDirectionStatistics &&
  2398. load_stats_file("stats"PATH_SEPARATOR"conn-stats",
  2399. "conn-bi-direct", now, &contents) > 0) {
  2400. smartlist_add(chunks, contents);
  2401. }
  2402. }
  2403. /* Add information about the pluggable transports we support. */
  2404. if (options->ServerTransportPlugin) {
  2405. char *pluggable_transports = pt_get_extra_info_descriptor_string();
  2406. if (pluggable_transports)
  2407. smartlist_add(chunks, pluggable_transports);
  2408. }
  2409. if (should_record_bridge_info(options) && write_stats_to_extrainfo) {
  2410. const char *bridge_stats = geoip_get_bridge_stats_extrainfo(now);
  2411. if (bridge_stats) {
  2412. smartlist_add(chunks, tor_strdup(bridge_stats));
  2413. }
  2414. }
  2415. smartlist_add(chunks, tor_strdup("router-signature\n"));
  2416. s = smartlist_join_strings(chunks, "", 0, NULL);
  2417. while (strlen(s) > MAX_EXTRAINFO_UPLOAD_SIZE - DIROBJ_MAX_SIG_LEN) {
  2418. /* So long as there are at least two chunks (one for the initial
  2419. * extra-info line and one for the router-signature), we can keep removing
  2420. * things. */
  2421. if (smartlist_len(chunks) > 2) {
  2422. /* We remove the next-to-last element (remember, len-1 is the last
  2423. element), since we need to keep the router-signature element. */
  2424. int idx = smartlist_len(chunks) - 2;
  2425. char *e = smartlist_get(chunks, idx);
  2426. smartlist_del_keeporder(chunks, idx);
  2427. log_warn(LD_GENERAL, "We just generated an extra-info descriptor "
  2428. "with statistics that exceeds the 50 KB "
  2429. "upload limit. Removing last added "
  2430. "statistics.");
  2431. tor_free(e);
  2432. tor_free(s);
  2433. s = smartlist_join_strings(chunks, "", 0, NULL);
  2434. } else {
  2435. log_warn(LD_BUG, "We just generated an extra-info descriptors that "
  2436. "exceeds the 50 KB upload limit.");
  2437. goto err;
  2438. }
  2439. }
  2440. memset(sig, 0, sizeof(sig));
  2441. if (router_get_extrainfo_hash(s, strlen(s), digest) < 0 ||
  2442. router_append_dirobj_signature(sig, sizeof(sig), digest, DIGEST_LEN,
  2443. ident_key) < 0) {
  2444. log_warn(LD_BUG, "Could not append signature to extra-info "
  2445. "descriptor.");
  2446. goto err;
  2447. }
  2448. smartlist_add(chunks, tor_strdup(sig));
  2449. tor_free(s);
  2450. s = smartlist_join_strings(chunks, "", 0, NULL);
  2451. cp = s_dup = tor_strdup(s);
  2452. ei_tmp = extrainfo_parse_entry_from_string(cp, NULL, 1, NULL);
  2453. if (!ei_tmp) {
  2454. if (write_stats_to_extrainfo) {
  2455. log_warn(LD_GENERAL, "We just generated an extra-info descriptor "
  2456. "with statistics that we can't parse. Not "
  2457. "adding statistics to this or any future "
  2458. "extra-info descriptors.");
  2459. write_stats_to_extrainfo = 0;
  2460. result = extrainfo_dump_to_string(s_out, extrainfo, ident_key);
  2461. goto done;
  2462. } else {
  2463. log_warn(LD_BUG, "We just generated an extrainfo descriptor we "
  2464. "can't parse.");
  2465. goto err;
  2466. }
  2467. }
  2468. *s_out = s;
  2469. s = NULL; /* prevent free */
  2470. result = 0;
  2471. goto done;
  2472. err:
  2473. result = -1;
  2474. done:
  2475. tor_free(s);
  2476. SMARTLIST_FOREACH(chunks, char *, cp, tor_free(cp));
  2477. smartlist_free(chunks);
  2478. tor_free(s_dup);
  2479. extrainfo_free(ei_tmp);
  2480. return result;
  2481. }
  2482. /** Return true iff <b>s</b> is a valid server nickname. (That is, a string
  2483. * containing between 1 and MAX_NICKNAME_LEN characters from
  2484. * LEGAL_NICKNAME_CHARACTERS.) */
  2485. int
  2486. is_legal_nickname(const char *s)
  2487. {
  2488. size_t len;
  2489. tor_assert(s);
  2490. len = strlen(s);
  2491. return len > 0 && len <= MAX_NICKNAME_LEN &&
  2492. strspn(s,LEGAL_NICKNAME_CHARACTERS) == len;
  2493. }
  2494. /** Return true iff <b>s</b> is a valid server nickname or
  2495. * hex-encoded identity-key digest. */
  2496. int
  2497. is_legal_nickname_or_hexdigest(const char *s)
  2498. {
  2499. if (*s!='$')
  2500. return is_legal_nickname(s);
  2501. else
  2502. return is_legal_hexdigest(s);
  2503. }
  2504. /** Return true iff <b>s</b> is a valid hex-encoded identity-key
  2505. * digest. (That is, an optional $, followed by 40 hex characters,
  2506. * followed by either nothing, or = or ~ followed by a nickname, or
  2507. * a character other than =, ~, or a hex character.)
  2508. */
  2509. int
  2510. is_legal_hexdigest(const char *s)
  2511. {
  2512. size_t len;
  2513. tor_assert(s);
  2514. if (s[0] == '$') s++;
  2515. len = strlen(s);
  2516. if (len > HEX_DIGEST_LEN) {
  2517. if (s[HEX_DIGEST_LEN] == '=' ||
  2518. s[HEX_DIGEST_LEN] == '~') {
  2519. if (!is_legal_nickname(s+HEX_DIGEST_LEN+1))
  2520. return 0;
  2521. } else {
  2522. return 0;
  2523. }
  2524. }
  2525. return (len >= HEX_DIGEST_LEN &&
  2526. strspn(s,HEX_CHARACTERS)==HEX_DIGEST_LEN);
  2527. }
  2528. /** Use <b>buf</b> (which must be at least NODE_DESC_BUF_LEN bytes long) to
  2529. * hold a human-readable description of a node with identity digest
  2530. * <b>id_digest</b>, named-status <b>is_named</b>, nickname <b>nickname</b>,
  2531. * and address <b>addr</b> or <b>addr32h</b>.
  2532. *
  2533. * The <b>nickname</b> and <b>addr</b> fields are optional and may be set to
  2534. * NULL. The <b>addr32h</b> field is optional and may be set to 0.
  2535. *
  2536. * Return a pointer to the front of <b>buf</b>.
  2537. */
  2538. const char *
  2539. format_node_description(char *buf,
  2540. const char *id_digest,
  2541. int is_named,
  2542. const char *nickname,
  2543. const tor_addr_t *addr,
  2544. uint32_t addr32h)
  2545. {
  2546. char *cp;
  2547. if (!buf)
  2548. return "<NULL BUFFER>";
  2549. buf[0] = '$';
  2550. base16_encode(buf+1, HEX_DIGEST_LEN+1, id_digest, DIGEST_LEN);
  2551. cp = buf+1+HEX_DIGEST_LEN;
  2552. if (nickname) {
  2553. buf[1+HEX_DIGEST_LEN] = is_named ? '=' : '~';
  2554. strlcpy(buf+1+HEX_DIGEST_LEN+1, nickname, MAX_NICKNAME_LEN+1);
  2555. cp += strlen(cp);
  2556. }
  2557. if (addr32h || addr) {
  2558. memcpy(cp, " at ", 4);
  2559. cp += 4;
  2560. if (addr) {
  2561. tor_addr_to_str(cp, addr, TOR_ADDR_BUF_LEN, 0);
  2562. } else {
  2563. struct in_addr in;
  2564. in.s_addr = htonl(addr32h);
  2565. tor_inet_ntoa(&in, cp, INET_NTOA_BUF_LEN);
  2566. }
  2567. }
  2568. return buf;
  2569. }
  2570. /** Use <b>buf</b> (which must be at least NODE_DESC_BUF_LEN bytes long) to
  2571. * hold a human-readable description of <b>ri</b>.
  2572. *
  2573. *
  2574. * Return a pointer to the front of <b>buf</b>.
  2575. */
  2576. const char *
  2577. router_get_description(char *buf, const routerinfo_t *ri)
  2578. {
  2579. if (!ri)
  2580. return "<null>";
  2581. return format_node_description(buf,
  2582. ri->cache_info.identity_digest,
  2583. router_is_named(ri),
  2584. ri->nickname,
  2585. NULL,
  2586. ri->addr);
  2587. }
  2588. /** Use <b>buf</b> (which must be at least NODE_DESC_BUF_LEN bytes long) to
  2589. * hold a human-readable description of <b>node</b>.
  2590. *
  2591. * Return a pointer to the front of <b>buf</b>.
  2592. */
  2593. const char *
  2594. node_get_description(char *buf, const node_t *node)
  2595. {
  2596. const char *nickname = NULL;
  2597. uint32_t addr32h = 0;
  2598. int is_named = 0;
  2599. if (!node)
  2600. return "<null>";
  2601. if (node->rs) {
  2602. nickname = node->rs->nickname;
  2603. is_named = node->rs->is_named;
  2604. addr32h = node->rs->addr;
  2605. } else if (node->ri) {
  2606. nickname = node->ri->nickname;
  2607. addr32h = node->ri->addr;
  2608. }
  2609. return format_node_description(buf,
  2610. node->identity,
  2611. is_named,
  2612. nickname,
  2613. NULL,
  2614. addr32h);
  2615. }
  2616. /** Use <b>buf</b> (which must be at least NODE_DESC_BUF_LEN bytes long) to
  2617. * hold a human-readable description of <b>rs</b>.
  2618. *
  2619. * Return a pointer to the front of <b>buf</b>.
  2620. */
  2621. const char *
  2622. routerstatus_get_description(char *buf, const routerstatus_t *rs)
  2623. {
  2624. if (!rs)
  2625. return "<null>";
  2626. return format_node_description(buf,
  2627. rs->identity_digest,
  2628. rs->is_named,
  2629. rs->nickname,
  2630. NULL,
  2631. rs->addr);
  2632. }
  2633. /** Use <b>buf</b> (which must be at least NODE_DESC_BUF_LEN bytes long) to
  2634. * hold a human-readable description of <b>ei</b>.
  2635. *
  2636. * Return a pointer to the front of <b>buf</b>.
  2637. */
  2638. const char *
  2639. extend_info_get_description(char *buf, const extend_info_t *ei)
  2640. {
  2641. if (!ei)
  2642. return "<null>";
  2643. return format_node_description(buf,
  2644. ei->identity_digest,
  2645. 0,
  2646. ei->nickname,
  2647. &ei->addr,
  2648. 0);
  2649. }
  2650. /** Return a human-readable description of the routerinfo_t <b>ri</b>.
  2651. *
  2652. * This function is not thread-safe. Each call to this function invalidates
  2653. * previous values returned by this function.
  2654. */
  2655. const char *
  2656. router_describe(const routerinfo_t *ri)
  2657. {
  2658. static char buf[NODE_DESC_BUF_LEN];
  2659. return router_get_description(buf, ri);
  2660. }
  2661. /** Return a human-readable description of the node_t <b>node</b>.
  2662. *
  2663. * This function is not thread-safe. Each call to this function invalidates
  2664. * previous values returned by this function.
  2665. */
  2666. const char *
  2667. node_describe(const node_t *node)
  2668. {
  2669. static char buf[NODE_DESC_BUF_LEN];
  2670. return node_get_description(buf, node);
  2671. }
  2672. /** Return a human-readable description of the routerstatus_t <b>rs</b>.
  2673. *
  2674. * This function is not thread-safe. Each call to this function invalidates
  2675. * previous values returned by this function.
  2676. */
  2677. const char *
  2678. routerstatus_describe(const routerstatus_t *rs)
  2679. {
  2680. static char buf[NODE_DESC_BUF_LEN];
  2681. return routerstatus_get_description(buf, rs);
  2682. }
  2683. /** Return a human-readable description of the extend_info_t <b>ri</b>.
  2684. *
  2685. * This function is not thread-safe. Each call to this function invalidates
  2686. * previous values returned by this function.
  2687. */
  2688. const char *
  2689. extend_info_describe(const extend_info_t *ei)
  2690. {
  2691. static char buf[NODE_DESC_BUF_LEN];
  2692. return extend_info_get_description(buf, ei);
  2693. }
  2694. /** Set <b>buf</b> (which must have MAX_VERBOSE_NICKNAME_LEN+1 bytes) to the
  2695. * verbose representation of the identity of <b>router</b>. The format is:
  2696. * A dollar sign.
  2697. * The upper-case hexadecimal encoding of the SHA1 hash of router's identity.
  2698. * A "=" if the router is named; a "~" if it is not.
  2699. * The router's nickname.
  2700. **/
  2701. void
  2702. router_get_verbose_nickname(char *buf, const routerinfo_t *router)
  2703. {
  2704. const char *good_digest = networkstatus_get_router_digest_by_nickname(
  2705. router->nickname);
  2706. int is_named = good_digest && tor_memeq(good_digest,
  2707. router->cache_info.identity_digest,
  2708. DIGEST_LEN);
  2709. buf[0] = '$';
  2710. base16_encode(buf+1, HEX_DIGEST_LEN+1, router->cache_info.identity_digest,
  2711. DIGEST_LEN);
  2712. buf[1+HEX_DIGEST_LEN] = is_named ? '=' : '~';
  2713. strlcpy(buf+1+HEX_DIGEST_LEN+1, router->nickname, MAX_NICKNAME_LEN+1);
  2714. }
  2715. /** Forget that we have issued any router-related warnings, so that we'll
  2716. * warn again if we see the same errors. */
  2717. void
  2718. router_reset_warnings(void)
  2719. {
  2720. if (warned_nonexistent_family) {
  2721. SMARTLIST_FOREACH(warned_nonexistent_family, char *, cp, tor_free(cp));
  2722. smartlist_clear(warned_nonexistent_family);
  2723. }
  2724. }
  2725. /** Given a router purpose, convert it to a string. Don't call this on
  2726. * ROUTER_PURPOSE_UNKNOWN: The whole point of that value is that we don't
  2727. * know its string representation. */
  2728. const char *
  2729. router_purpose_to_string(uint8_t p)
  2730. {
  2731. switch (p)
  2732. {
  2733. case ROUTER_PURPOSE_GENERAL: return "general";
  2734. case ROUTER_PURPOSE_BRIDGE: return "bridge";
  2735. case ROUTER_PURPOSE_CONTROLLER: return "controller";
  2736. default:
  2737. tor_assert(0);
  2738. }
  2739. return NULL;
  2740. }
  2741. /** Given a string, convert it to a router purpose. */
  2742. uint8_t
  2743. router_purpose_from_string(const char *s)
  2744. {
  2745. if (!strcmp(s, "general"))
  2746. return ROUTER_PURPOSE_GENERAL;
  2747. else if (!strcmp(s, "bridge"))
  2748. return ROUTER_PURPOSE_BRIDGE;
  2749. else if (!strcmp(s, "controller"))
  2750. return ROUTER_PURPOSE_CONTROLLER;
  2751. else
  2752. return ROUTER_PURPOSE_UNKNOWN;
  2753. }
  2754. /** Release all static resources held in router.c */
  2755. void
  2756. router_free_all(void)
  2757. {
  2758. crypto_pk_free(onionkey);
  2759. crypto_pk_free(lastonionkey);
  2760. crypto_pk_free(server_identitykey);
  2761. crypto_pk_free(client_identitykey);
  2762. tor_mutex_free(key_lock);
  2763. routerinfo_free(desc_routerinfo);
  2764. extrainfo_free(desc_extrainfo);
  2765. crypto_pk_free(authority_signing_key);
  2766. authority_cert_free(authority_key_certificate);
  2767. crypto_pk_free(legacy_signing_key);
  2768. authority_cert_free(legacy_key_certificate);
  2769. #ifdef CURVE25519_ENABLED
  2770. memwipe(&curve25519_onion_key, 0, sizeof(curve25519_onion_key));
  2771. memwipe(&last_curve25519_onion_key, 0, sizeof(last_curve25519_onion_key));
  2772. #endif
  2773. if (warned_nonexistent_family) {
  2774. SMARTLIST_FOREACH(warned_nonexistent_family, char *, cp, tor_free(cp));
  2775. smartlist_free(warned_nonexistent_family);
  2776. }
  2777. }
  2778. /** Return a smartlist of tor_addr_port_t's with all the OR ports of
  2779. <b>ri</b>. Note that freeing of the items in the list as well as
  2780. the smartlist itself is the callers responsibility.
  2781. XXX duplicating code from node_get_all_orports(). */
  2782. smartlist_t *
  2783. router_get_all_orports(const routerinfo_t *ri)
  2784. {
  2785. smartlist_t *sl = smartlist_new();
  2786. tor_assert(ri);
  2787. if (ri->addr != 0) {
  2788. tor_addr_port_t *ap = tor_malloc(sizeof(tor_addr_port_t));
  2789. tor_addr_from_ipv4h(&ap->addr, ri->addr);
  2790. ap->port = ri->or_port;
  2791. smartlist_add(sl, ap);
  2792. }
  2793. if (!tor_addr_is_null(&ri->ipv6_addr)) {
  2794. tor_addr_port_t *ap = tor_malloc(sizeof(tor_addr_port_t));
  2795. tor_addr_copy(&ap->addr, &ri->ipv6_addr);
  2796. ap->port = ri->or_port;
  2797. smartlist_add(sl, ap);
  2798. }
  2799. return sl;
  2800. }