router.c 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822
  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-2017, 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_rand.h"
  15. #include "crypto_util.h"
  16. #include "crypto_curve25519.h"
  17. #include "directory.h"
  18. #include "dirserv.h"
  19. #include "dns.h"
  20. #include "geoip.h"
  21. #include "hibernate.h"
  22. #include "main.h"
  23. #include "networkstatus.h"
  24. #include "nodelist.h"
  25. #include "policies.h"
  26. #include "protover.h"
  27. #include "relay.h"
  28. #include "rephist.h"
  29. #include "router.h"
  30. #include "routerkeys.h"
  31. #include "routerlist.h"
  32. #include "routerparse.h"
  33. #include "statefile.h"
  34. #include "torcert.h"
  35. #include "transports.h"
  36. #include "routerset.h"
  37. #include "dirauth/mode.h"
  38. #include "crypt_path_st.h"
  39. #include "dir_connection_st.h"
  40. #include "dir_server_st.h"
  41. #include "origin_circuit_st.h"
  42. #include "port_cfg_st.h"
  43. /**
  44. * \file router.c
  45. * \brief Miscellaneous relay functionality, including RSA key maintenance,
  46. * generating and uploading server descriptors, picking an address to
  47. * advertise, and so on.
  48. *
  49. * This module handles the job of deciding whether we are a Tor relay, and if
  50. * so what kind. (Mostly through functions like server_mode() that inspect an
  51. * or_options_t, but in some cases based on our own capabilities, such as when
  52. * we are deciding whether to be a directory cache in
  53. * router_has_bandwidth_to_be_dirserver().)
  54. *
  55. * Also in this module are the functions to generate our own routerinfo_t and
  56. * extrainfo_t, and to encode those to signed strings for upload to the
  57. * directory authorities.
  58. *
  59. * This module also handles key maintenance for RSA and Curve25519-ntor keys,
  60. * and for our TLS context. (These functions should eventually move to
  61. * routerkeys.c along with the code that handles Ed25519 keys now.)
  62. **/
  63. /************************************************************/
  64. /*****
  65. * Key management: ORs only.
  66. *****/
  67. /** Private keys for this OR. There is also an SSL key managed by tortls.c.
  68. */
  69. static tor_mutex_t *key_lock=NULL;
  70. static time_t onionkey_set_at=0; /**< When was onionkey last changed? */
  71. /** Current private onionskin decryption key: used to decode CREATE cells. */
  72. static crypto_pk_t *onionkey=NULL;
  73. /** Previous private onionskin decryption key: used to decode CREATE cells
  74. * generated by clients that have an older version of our descriptor. */
  75. static crypto_pk_t *lastonionkey=NULL;
  76. /** Current private ntor secret key: used to perform the ntor handshake. */
  77. static curve25519_keypair_t curve25519_onion_key;
  78. /** Previous private ntor secret key: used to perform the ntor handshake
  79. * with clients that have an older version of our descriptor. */
  80. static curve25519_keypair_t last_curve25519_onion_key;
  81. /** Private server "identity key": used to sign directory info and TLS
  82. * certificates. Never changes. */
  83. static crypto_pk_t *server_identitykey=NULL;
  84. /** Digest of server_identitykey. */
  85. static char server_identitykey_digest[DIGEST_LEN];
  86. /** Private client "identity key": used to sign bridges' and clients'
  87. * outbound TLS certificates. Regenerated on startup and on IP address
  88. * change. */
  89. static crypto_pk_t *client_identitykey=NULL;
  90. /** Signing key used for v3 directory material; only set for authorities. */
  91. static crypto_pk_t *authority_signing_key = NULL;
  92. /** Key certificate to authenticate v3 directory material; only set for
  93. * authorities. */
  94. static authority_cert_t *authority_key_certificate = NULL;
  95. /** For emergency V3 authority key migration: An extra signing key that we use
  96. * with our old (obsolete) identity key for a while. */
  97. static crypto_pk_t *legacy_signing_key = NULL;
  98. /** For emergency V3 authority key migration: An extra certificate to
  99. * authenticate legacy_signing_key with our obsolete identity key.*/
  100. static authority_cert_t *legacy_key_certificate = NULL;
  101. /* (Note that v3 authorities also have a separate "authority identity key",
  102. * but this key is never actually loaded by the Tor process. Instead, it's
  103. * used by tor-gencert to sign new signing keys and make new key
  104. * certificates. */
  105. const char *format_node_description(char *buf,
  106. const char *id_digest,
  107. int is_named,
  108. const char *nickname,
  109. const tor_addr_t *addr,
  110. uint32_t addr32h);
  111. /** Return a readonly string with human readable description
  112. * of <b>err</b>.
  113. */
  114. const char *
  115. routerinfo_err_to_string(int err)
  116. {
  117. switch (err) {
  118. case TOR_ROUTERINFO_ERROR_NO_EXT_ADDR:
  119. return "No known exit address yet";
  120. case TOR_ROUTERINFO_ERROR_CANNOT_PARSE:
  121. return "Cannot parse descriptor";
  122. case TOR_ROUTERINFO_ERROR_NOT_A_SERVER:
  123. return "Not running in server mode";
  124. case TOR_ROUTERINFO_ERROR_DIGEST_FAILED:
  125. return "Key digest failed";
  126. case TOR_ROUTERINFO_ERROR_CANNOT_GENERATE:
  127. return "Cannot generate descriptor";
  128. case TOR_ROUTERINFO_ERROR_DESC_REBUILDING:
  129. return "Descriptor still rebuilding - not ready yet";
  130. }
  131. log_warn(LD_BUG, "unknown routerinfo error %d - shouldn't happen", err);
  132. tor_assert_unreached();
  133. return "Unknown error";
  134. }
  135. /** Return true if we expect given error to be transient.
  136. * Return false otherwise.
  137. */
  138. int
  139. routerinfo_err_is_transient(int err)
  140. {
  141. switch (err) {
  142. case TOR_ROUTERINFO_ERROR_NO_EXT_ADDR:
  143. return 1;
  144. case TOR_ROUTERINFO_ERROR_CANNOT_PARSE:
  145. return 1;
  146. case TOR_ROUTERINFO_ERROR_NOT_A_SERVER:
  147. return 0;
  148. case TOR_ROUTERINFO_ERROR_DIGEST_FAILED:
  149. return 0; // XXX: bug?
  150. case TOR_ROUTERINFO_ERROR_CANNOT_GENERATE:
  151. return 1;
  152. case TOR_ROUTERINFO_ERROR_DESC_REBUILDING:
  153. return 1;
  154. }
  155. return 0;
  156. }
  157. /** Replace the current onion key with <b>k</b>. Does not affect
  158. * lastonionkey; to update lastonionkey correctly, call rotate_onion_key().
  159. */
  160. static void
  161. set_onion_key(crypto_pk_t *k)
  162. {
  163. if (onionkey && crypto_pk_eq_keys(onionkey, k)) {
  164. /* k is already our onion key; free it and return */
  165. crypto_pk_free(k);
  166. return;
  167. }
  168. tor_mutex_acquire(key_lock);
  169. crypto_pk_free(onionkey);
  170. onionkey = k;
  171. tor_mutex_release(key_lock);
  172. mark_my_descriptor_dirty("set onion key");
  173. }
  174. /** Return the current onion key. Requires that the onion key has been
  175. * loaded or generated. */
  176. crypto_pk_t *
  177. get_onion_key(void)
  178. {
  179. tor_assert(onionkey);
  180. return onionkey;
  181. }
  182. /** Store a full copy of the current onion key into *<b>key</b>, and a full
  183. * copy of the most recent onion key into *<b>last</b>. Store NULL into
  184. * a pointer if the corresponding key does not exist.
  185. */
  186. void
  187. dup_onion_keys(crypto_pk_t **key, crypto_pk_t **last)
  188. {
  189. tor_assert(key);
  190. tor_assert(last);
  191. tor_mutex_acquire(key_lock);
  192. if (onionkey)
  193. *key = crypto_pk_copy_full(onionkey);
  194. else
  195. *key = NULL;
  196. if (lastonionkey)
  197. *last = crypto_pk_copy_full(lastonionkey);
  198. else
  199. *last = NULL;
  200. tor_mutex_release(key_lock);
  201. }
  202. /** Expire our old set of onion keys. This is done by setting
  203. * last_curve25519_onion_key and lastonionkey to all zero's and NULL
  204. * respectively.
  205. *
  206. * This function does not perform any grace period checks for the old onion
  207. * keys.
  208. */
  209. void
  210. expire_old_onion_keys(void)
  211. {
  212. char *fname = NULL;
  213. tor_mutex_acquire(key_lock);
  214. /* Free lastonionkey and set it to NULL. */
  215. if (lastonionkey) {
  216. crypto_pk_free(lastonionkey);
  217. lastonionkey = NULL;
  218. }
  219. /* We zero out the keypair. See the tor_mem_is_zero() check made in
  220. * construct_ntor_key_map() below. */
  221. memset(&last_curve25519_onion_key, 0, sizeof(last_curve25519_onion_key));
  222. tor_mutex_release(key_lock);
  223. fname = get_keydir_fname("secret_onion_key.old");
  224. if (file_status(fname) == FN_FILE) {
  225. if (tor_unlink(fname) != 0) {
  226. log_warn(LD_FS, "Couldn't unlink old onion key file %s: %s",
  227. fname, strerror(errno));
  228. }
  229. }
  230. tor_free(fname);
  231. fname = get_keydir_fname("secret_onion_key_ntor.old");
  232. if (file_status(fname) == FN_FILE) {
  233. if (tor_unlink(fname) != 0) {
  234. log_warn(LD_FS, "Couldn't unlink old ntor onion key file %s: %s",
  235. fname, strerror(errno));
  236. }
  237. }
  238. tor_free(fname);
  239. }
  240. /** Return the current secret onion key for the ntor handshake. Must only
  241. * be called from the main thread. */
  242. static const curve25519_keypair_t *
  243. get_current_curve25519_keypair(void)
  244. {
  245. return &curve25519_onion_key;
  246. }
  247. /** Return a map from KEYID (the key itself) to keypairs for use in the ntor
  248. * handshake. Must only be called from the main thread. */
  249. di_digest256_map_t *
  250. construct_ntor_key_map(void)
  251. {
  252. di_digest256_map_t *m = NULL;
  253. if (!tor_mem_is_zero((const char*)
  254. curve25519_onion_key.pubkey.public_key,
  255. CURVE25519_PUBKEY_LEN)) {
  256. dimap_add_entry(&m,
  257. curve25519_onion_key.pubkey.public_key,
  258. tor_memdup(&curve25519_onion_key,
  259. sizeof(curve25519_keypair_t)));
  260. }
  261. if (!tor_mem_is_zero((const char*)
  262. last_curve25519_onion_key.pubkey.public_key,
  263. CURVE25519_PUBKEY_LEN)) {
  264. dimap_add_entry(&m,
  265. last_curve25519_onion_key.pubkey.public_key,
  266. tor_memdup(&last_curve25519_onion_key,
  267. sizeof(curve25519_keypair_t)));
  268. }
  269. return m;
  270. }
  271. /** Helper used to deallocate a di_digest256_map_t returned by
  272. * construct_ntor_key_map. */
  273. static void
  274. ntor_key_map_free_helper(void *arg)
  275. {
  276. curve25519_keypair_t *k = arg;
  277. memwipe(k, 0, sizeof(*k));
  278. tor_free(k);
  279. }
  280. /** Release all storage from a keymap returned by construct_ntor_key_map. */
  281. void
  282. ntor_key_map_free_(di_digest256_map_t *map)
  283. {
  284. if (!map)
  285. return;
  286. dimap_free(map, ntor_key_map_free_helper);
  287. }
  288. /** Return the time when the onion key was last set. This is either the time
  289. * when the process launched, or the time of the most recent key rotation since
  290. * the process launched.
  291. */
  292. time_t
  293. get_onion_key_set_at(void)
  294. {
  295. return onionkey_set_at;
  296. }
  297. /** Set the current server identity key to <b>k</b>.
  298. */
  299. void
  300. set_server_identity_key(crypto_pk_t *k)
  301. {
  302. crypto_pk_free(server_identitykey);
  303. server_identitykey = k;
  304. if (crypto_pk_get_digest(server_identitykey,
  305. server_identitykey_digest) < 0) {
  306. log_err(LD_BUG, "Couldn't compute our own identity key digest.");
  307. tor_assert(0);
  308. }
  309. }
  310. /** Make sure that we have set up our identity keys to match or not match as
  311. * appropriate, and die with an assertion if we have not. */
  312. static void
  313. assert_identity_keys_ok(void)
  314. {
  315. if (1)
  316. return;
  317. tor_assert(client_identitykey);
  318. if (public_server_mode(get_options())) {
  319. /* assert that we have set the client and server keys to be equal */
  320. tor_assert(server_identitykey);
  321. tor_assert(crypto_pk_eq_keys(client_identitykey, server_identitykey));
  322. } else {
  323. /* assert that we have set the client and server keys to be unequal */
  324. if (server_identitykey)
  325. tor_assert(!crypto_pk_eq_keys(client_identitykey, server_identitykey));
  326. }
  327. }
  328. /** Returns the current server identity key; requires that the key has
  329. * been set, and that we are running as a Tor server.
  330. */
  331. crypto_pk_t *
  332. get_server_identity_key(void)
  333. {
  334. tor_assert(server_identitykey);
  335. tor_assert(server_mode(get_options()));
  336. assert_identity_keys_ok();
  337. return server_identitykey;
  338. }
  339. /** Return true iff we are a server and the server identity key
  340. * has been set. */
  341. int
  342. server_identity_key_is_set(void)
  343. {
  344. return server_mode(get_options()) && server_identitykey != NULL;
  345. }
  346. /** Set the current client identity key to <b>k</b>.
  347. */
  348. void
  349. set_client_identity_key(crypto_pk_t *k)
  350. {
  351. crypto_pk_free(client_identitykey);
  352. client_identitykey = k;
  353. }
  354. /** Returns the current client identity key for use on outgoing TLS
  355. * connections; requires that the key has been set.
  356. */
  357. crypto_pk_t *
  358. get_tlsclient_identity_key(void)
  359. {
  360. tor_assert(client_identitykey);
  361. assert_identity_keys_ok();
  362. return client_identitykey;
  363. }
  364. /** Return true iff the client identity key has been set. */
  365. int
  366. client_identity_key_is_set(void)
  367. {
  368. return client_identitykey != NULL;
  369. }
  370. /** Return the key certificate for this v3 (voting) authority, or NULL
  371. * if we have no such certificate. */
  372. MOCK_IMPL(authority_cert_t *,
  373. get_my_v3_authority_cert, (void))
  374. {
  375. return authority_key_certificate;
  376. }
  377. /** Return the v3 signing key for this v3 (voting) authority, or NULL
  378. * if we have no such key. */
  379. crypto_pk_t *
  380. get_my_v3_authority_signing_key(void)
  381. {
  382. return authority_signing_key;
  383. }
  384. /** If we're an authority, and we're using a legacy authority identity key for
  385. * emergency migration purposes, return the certificate associated with that
  386. * key. */
  387. authority_cert_t *
  388. get_my_v3_legacy_cert(void)
  389. {
  390. return legacy_key_certificate;
  391. }
  392. /** If we're an authority, and we're using a legacy authority identity key for
  393. * emergency migration purposes, return that key. */
  394. crypto_pk_t *
  395. get_my_v3_legacy_signing_key(void)
  396. {
  397. return legacy_signing_key;
  398. }
  399. /** Replace the previous onion key with the current onion key, and generate
  400. * a new previous onion key. Immediately after calling this function,
  401. * the OR should:
  402. * - schedule all previous cpuworkers to shut down _after_ processing
  403. * pending work. (This will cause fresh cpuworkers to be generated.)
  404. * - generate and upload a fresh routerinfo.
  405. */
  406. void
  407. rotate_onion_key(void)
  408. {
  409. char *fname, *fname_prev;
  410. crypto_pk_t *prkey = NULL;
  411. or_state_t *state = get_or_state();
  412. curve25519_keypair_t new_curve25519_keypair;
  413. time_t now;
  414. fname = get_keydir_fname("secret_onion_key");
  415. fname_prev = get_keydir_fname("secret_onion_key.old");
  416. /* There isn't much point replacing an old key with an empty file */
  417. if (file_status(fname) == FN_FILE) {
  418. if (replace_file(fname, fname_prev))
  419. goto error;
  420. }
  421. if (!(prkey = crypto_pk_new())) {
  422. log_err(LD_GENERAL,"Error constructing rotated onion key");
  423. goto error;
  424. }
  425. if (crypto_pk_generate_key(prkey)) {
  426. log_err(LD_BUG,"Error generating onion key");
  427. goto error;
  428. }
  429. if (crypto_pk_write_private_key_to_filename(prkey, fname)) {
  430. log_err(LD_FS,"Couldn't write generated onion key to \"%s\".", fname);
  431. goto error;
  432. }
  433. tor_free(fname);
  434. tor_free(fname_prev);
  435. fname = get_keydir_fname("secret_onion_key_ntor");
  436. fname_prev = get_keydir_fname("secret_onion_key_ntor.old");
  437. if (curve25519_keypair_generate(&new_curve25519_keypair, 1) < 0)
  438. goto error;
  439. /* There isn't much point replacing an old key with an empty file */
  440. if (file_status(fname) == FN_FILE) {
  441. if (replace_file(fname, fname_prev))
  442. goto error;
  443. }
  444. if (curve25519_keypair_write_to_file(&new_curve25519_keypair, fname,
  445. "onion") < 0) {
  446. log_err(LD_FS,"Couldn't write curve25519 onion key to \"%s\".",fname);
  447. goto error;
  448. }
  449. log_info(LD_GENERAL, "Rotating onion key");
  450. tor_mutex_acquire(key_lock);
  451. crypto_pk_free(lastonionkey);
  452. lastonionkey = onionkey;
  453. onionkey = prkey;
  454. memcpy(&last_curve25519_onion_key, &curve25519_onion_key,
  455. sizeof(curve25519_keypair_t));
  456. memcpy(&curve25519_onion_key, &new_curve25519_keypair,
  457. sizeof(curve25519_keypair_t));
  458. now = time(NULL);
  459. state->LastRotatedOnionKey = onionkey_set_at = now;
  460. tor_mutex_release(key_lock);
  461. mark_my_descriptor_dirty("rotated onion key");
  462. or_state_mark_dirty(state, get_options()->AvoidDiskWrites ? now+3600 : 0);
  463. goto done;
  464. error:
  465. log_warn(LD_GENERAL, "Couldn't rotate onion key.");
  466. if (prkey)
  467. crypto_pk_free(prkey);
  468. done:
  469. memwipe(&new_curve25519_keypair, 0, sizeof(new_curve25519_keypair));
  470. tor_free(fname);
  471. tor_free(fname_prev);
  472. }
  473. /** Log greeting message that points to new relay lifecycle document the
  474. * first time this function has been called.
  475. */
  476. static void
  477. log_new_relay_greeting(void)
  478. {
  479. static int already_logged = 0;
  480. if (already_logged)
  481. return;
  482. tor_log(LOG_NOTICE, LD_GENERAL, "You are running a new relay. "
  483. "Thanks for helping the Tor network! If you wish to know "
  484. "what will happen in the upcoming weeks regarding its usage, "
  485. "have a look at https://blog.torproject.org/blog/lifecycle-of"
  486. "-a-new-relay");
  487. already_logged = 1;
  488. }
  489. /** Try to read an RSA key from <b>fname</b>. If <b>fname</b> doesn't exist
  490. * and <b>generate</b> is true, create a new RSA key and save it in
  491. * <b>fname</b>. Return the read/created key, or NULL on error. Log all
  492. * errors at level <b>severity</b>. If <b>log_greeting</b> is non-zero and a
  493. * new key was created, log_new_relay_greeting() is called.
  494. */
  495. crypto_pk_t *
  496. init_key_from_file(const char *fname, int generate, int severity,
  497. int log_greeting)
  498. {
  499. crypto_pk_t *prkey = NULL;
  500. if (!(prkey = crypto_pk_new())) {
  501. tor_log(severity, LD_GENERAL,"Error constructing key");
  502. goto error;
  503. }
  504. switch (file_status(fname)) {
  505. case FN_DIR:
  506. case FN_ERROR:
  507. tor_log(severity, LD_FS,"Can't read key from \"%s\"", fname);
  508. goto error;
  509. /* treat empty key files as if the file doesn't exist, and,
  510. * if generate is set, replace the empty file in
  511. * crypto_pk_write_private_key_to_filename() */
  512. case FN_NOENT:
  513. case FN_EMPTY:
  514. if (generate) {
  515. if (!have_lockfile()) {
  516. if (try_locking(get_options(), 0)<0) {
  517. /* Make sure that --list-fingerprint only creates new keys
  518. * if there is no possibility for a deadlock. */
  519. tor_log(severity, LD_FS, "Another Tor process has locked \"%s\". "
  520. "Not writing any new keys.", fname);
  521. /*XXXX The 'other process' might make a key in a second or two;
  522. * maybe we should wait for it. */
  523. goto error;
  524. }
  525. }
  526. log_info(LD_GENERAL, "No key found in \"%s\"; generating fresh key.",
  527. fname);
  528. if (crypto_pk_generate_key(prkey)) {
  529. tor_log(severity, LD_GENERAL,"Error generating onion key");
  530. goto error;
  531. }
  532. if (crypto_pk_check_key(prkey) <= 0) {
  533. tor_log(severity, LD_GENERAL,"Generated key seems invalid");
  534. goto error;
  535. }
  536. log_info(LD_GENERAL, "Generated key seems valid");
  537. if (log_greeting) {
  538. log_new_relay_greeting();
  539. }
  540. if (crypto_pk_write_private_key_to_filename(prkey, fname)) {
  541. tor_log(severity, LD_FS,
  542. "Couldn't write generated key to \"%s\".", fname);
  543. goto error;
  544. }
  545. } else {
  546. tor_log(severity, LD_GENERAL, "No key found in \"%s\"", fname);
  547. goto error;
  548. }
  549. return prkey;
  550. case FN_FILE:
  551. if (crypto_pk_read_private_key_from_filename(prkey, fname)) {
  552. tor_log(severity, LD_GENERAL,"Error loading private key.");
  553. goto error;
  554. }
  555. return prkey;
  556. default:
  557. tor_assert(0);
  558. }
  559. error:
  560. if (prkey)
  561. crypto_pk_free(prkey);
  562. return NULL;
  563. }
  564. /** Load a curve25519 keypair from the file <b>fname</b>, writing it into
  565. * <b>keys_out</b>. If the file isn't found, or is empty, and <b>generate</b>
  566. * is true, create a new keypair and write it into the file. If there are
  567. * errors, log them at level <b>severity</b>. Generate files using <b>tag</b>
  568. * in their ASCII wrapper. */
  569. static int
  570. init_curve25519_keypair_from_file(curve25519_keypair_t *keys_out,
  571. const char *fname,
  572. int generate,
  573. int severity,
  574. const char *tag)
  575. {
  576. switch (file_status(fname)) {
  577. case FN_DIR:
  578. case FN_ERROR:
  579. tor_log(severity, LD_FS,"Can't read key from \"%s\"", fname);
  580. goto error;
  581. /* treat empty key files as if the file doesn't exist, and, if generate
  582. * is set, replace the empty file in curve25519_keypair_write_to_file() */
  583. case FN_NOENT:
  584. case FN_EMPTY:
  585. if (generate) {
  586. if (!have_lockfile()) {
  587. if (try_locking(get_options(), 0)<0) {
  588. /* Make sure that --list-fingerprint only creates new keys
  589. * if there is no possibility for a deadlock. */
  590. tor_log(severity, LD_FS, "Another Tor process has locked \"%s\". "
  591. "Not writing any new keys.", fname);
  592. /*XXXX The 'other process' might make a key in a second or two;
  593. * maybe we should wait for it. */
  594. goto error;
  595. }
  596. }
  597. log_info(LD_GENERAL, "No key found in \"%s\"; generating fresh key.",
  598. fname);
  599. if (curve25519_keypair_generate(keys_out, 1) < 0)
  600. goto error;
  601. if (curve25519_keypair_write_to_file(keys_out, fname, tag)<0) {
  602. tor_log(severity, LD_FS,
  603. "Couldn't write generated key to \"%s\".", fname);
  604. memwipe(keys_out, 0, sizeof(*keys_out));
  605. goto error;
  606. }
  607. } else {
  608. log_info(LD_GENERAL, "No key found in \"%s\"", fname);
  609. }
  610. return 0;
  611. case FN_FILE:
  612. {
  613. char *tag_in=NULL;
  614. if (curve25519_keypair_read_from_file(keys_out, &tag_in, fname) < 0) {
  615. tor_log(severity, LD_GENERAL,"Error loading private key.");
  616. tor_free(tag_in);
  617. goto error;
  618. }
  619. if (!tag_in || strcmp(tag_in, tag)) {
  620. tor_log(severity, LD_GENERAL,"Unexpected tag %s on private key.",
  621. escaped(tag_in));
  622. tor_free(tag_in);
  623. goto error;
  624. }
  625. tor_free(tag_in);
  626. return 0;
  627. }
  628. default:
  629. tor_assert(0);
  630. }
  631. error:
  632. return -1;
  633. }
  634. /** Try to load the vote-signing private key and certificate for being a v3
  635. * directory authority, and make sure they match. If <b>legacy</b>, load a
  636. * legacy key/cert set for emergency key migration; otherwise load the regular
  637. * key/cert set. On success, store them into *<b>key_out</b> and
  638. * *<b>cert_out</b> respectively, and return 0. On failure, return -1. */
  639. static int
  640. load_authority_keyset(int legacy, crypto_pk_t **key_out,
  641. authority_cert_t **cert_out)
  642. {
  643. int r = -1;
  644. char *fname = NULL, *cert = NULL;
  645. const char *eos = NULL;
  646. crypto_pk_t *signing_key = NULL;
  647. authority_cert_t *parsed = NULL;
  648. fname = get_keydir_fname(
  649. legacy ? "legacy_signing_key" : "authority_signing_key");
  650. signing_key = init_key_from_file(fname, 0, LOG_ERR, 0);
  651. if (!signing_key) {
  652. log_warn(LD_DIR, "No version 3 directory key found in %s", fname);
  653. goto done;
  654. }
  655. tor_free(fname);
  656. fname = get_keydir_fname(
  657. legacy ? "legacy_certificate" : "authority_certificate");
  658. cert = read_file_to_str(fname, 0, NULL);
  659. if (!cert) {
  660. log_warn(LD_DIR, "Signing key found, but no certificate found in %s",
  661. fname);
  662. goto done;
  663. }
  664. parsed = authority_cert_parse_from_string(cert, &eos);
  665. if (!parsed) {
  666. log_warn(LD_DIR, "Unable to parse certificate in %s", fname);
  667. goto done;
  668. }
  669. if (!crypto_pk_eq_keys(signing_key, parsed->signing_key)) {
  670. log_warn(LD_DIR, "Stored signing key does not match signing key in "
  671. "certificate");
  672. goto done;
  673. }
  674. crypto_pk_free(*key_out);
  675. authority_cert_free(*cert_out);
  676. *key_out = signing_key;
  677. *cert_out = parsed;
  678. r = 0;
  679. signing_key = NULL;
  680. parsed = NULL;
  681. done:
  682. tor_free(fname);
  683. tor_free(cert);
  684. crypto_pk_free(signing_key);
  685. authority_cert_free(parsed);
  686. return r;
  687. }
  688. /** Load the v3 (voting) authority signing key and certificate, if they are
  689. * present. Return -1 if anything is missing, mismatched, or unloadable;
  690. * return 0 on success. */
  691. static int
  692. init_v3_authority_keys(void)
  693. {
  694. if (load_authority_keyset(0, &authority_signing_key,
  695. &authority_key_certificate)<0)
  696. return -1;
  697. if (get_options()->V3AuthUseLegacyKey &&
  698. load_authority_keyset(1, &legacy_signing_key,
  699. &legacy_key_certificate)<0)
  700. return -1;
  701. return 0;
  702. }
  703. /** If we're a v3 authority, check whether we have a certificate that's
  704. * likely to expire soon. Warn if we do, but not too often. */
  705. void
  706. v3_authority_check_key_expiry(void)
  707. {
  708. time_t now, expires;
  709. static time_t last_warned = 0;
  710. int badness, time_left, warn_interval;
  711. if (!authdir_mode_v3(get_options()) || !authority_key_certificate)
  712. return;
  713. now = time(NULL);
  714. expires = authority_key_certificate->expires;
  715. time_left = (int)( expires - now );
  716. if (time_left <= 0) {
  717. badness = LOG_ERR;
  718. warn_interval = 60*60;
  719. } else if (time_left <= 24*60*60) {
  720. badness = LOG_WARN;
  721. warn_interval = 60*60;
  722. } else if (time_left <= 24*60*60*7) {
  723. badness = LOG_WARN;
  724. warn_interval = 24*60*60;
  725. } else if (time_left <= 24*60*60*30) {
  726. badness = LOG_WARN;
  727. warn_interval = 24*60*60*5;
  728. } else {
  729. return;
  730. }
  731. if (last_warned + warn_interval > now)
  732. return;
  733. if (time_left <= 0) {
  734. tor_log(badness, LD_DIR, "Your v3 authority certificate has expired."
  735. " Generate a new one NOW.");
  736. } else if (time_left <= 24*60*60) {
  737. tor_log(badness, LD_DIR, "Your v3 authority certificate expires in %d "
  738. "hours; Generate a new one NOW.", time_left/(60*60));
  739. } else {
  740. tor_log(badness, LD_DIR, "Your v3 authority certificate expires in %d "
  741. "days; Generate a new one soon.", time_left/(24*60*60));
  742. }
  743. last_warned = now;
  744. }
  745. /** Get the lifetime of an onion key in days. This value is defined by the
  746. * network consesus parameter "onion-key-rotation-days". Always returns a value
  747. * between <b>MIN_ONION_KEY_LIFETIME_DAYS</b> and
  748. * <b>MAX_ONION_KEY_LIFETIME_DAYS</b>.
  749. */
  750. static int
  751. get_onion_key_rotation_days_(void)
  752. {
  753. return networkstatus_get_param(NULL,
  754. "onion-key-rotation-days",
  755. DEFAULT_ONION_KEY_LIFETIME_DAYS,
  756. MIN_ONION_KEY_LIFETIME_DAYS,
  757. MAX_ONION_KEY_LIFETIME_DAYS);
  758. }
  759. /** Get the current lifetime of an onion key in seconds. This value is defined
  760. * by the network consesus parameter "onion-key-rotation-days", but the value
  761. * is converted to seconds.
  762. */
  763. int
  764. get_onion_key_lifetime(void)
  765. {
  766. return get_onion_key_rotation_days_()*24*60*60;
  767. }
  768. /** Get the grace period of an onion key in seconds. This value is defined by
  769. * the network consesus parameter "onion-key-grace-period-days", but the value
  770. * is converted to seconds.
  771. */
  772. int
  773. get_onion_key_grace_period(void)
  774. {
  775. int grace_period;
  776. grace_period = networkstatus_get_param(NULL,
  777. "onion-key-grace-period-days",
  778. DEFAULT_ONION_KEY_GRACE_PERIOD_DAYS,
  779. MIN_ONION_KEY_GRACE_PERIOD_DAYS,
  780. get_onion_key_rotation_days_());
  781. return grace_period*24*60*60;
  782. }
  783. /** Set up Tor's TLS contexts, based on our configuration and keys. Return 0
  784. * on success, and -1 on failure. */
  785. int
  786. router_initialize_tls_context(void)
  787. {
  788. unsigned int flags = 0;
  789. const or_options_t *options = get_options();
  790. int lifetime = options->SSLKeyLifetime;
  791. if (public_server_mode(options))
  792. flags |= TOR_TLS_CTX_IS_PUBLIC_SERVER;
  793. if (!lifetime) { /* we should guess a good ssl cert lifetime */
  794. /* choose between 5 and 365 days, and round to the day */
  795. unsigned int five_days = 5*24*3600;
  796. unsigned int one_year = 365*24*3600;
  797. lifetime = crypto_rand_int_range(five_days, one_year);
  798. lifetime -= lifetime % (24*3600);
  799. if (crypto_rand_int(2)) {
  800. /* Half the time we expire at midnight, and half the time we expire
  801. * one second before midnight. (Some CAs wobble their expiry times a
  802. * bit in practice, perhaps to reduce collision attacks; see ticket
  803. * 8443 for details about observed certs in the wild.) */
  804. lifetime--;
  805. }
  806. }
  807. /* It's ok to pass lifetime in as an unsigned int, since
  808. * config_parse_interval() checked it. */
  809. return tor_tls_context_init(flags,
  810. get_tlsclient_identity_key(),
  811. server_mode(options) ?
  812. get_server_identity_key() : NULL,
  813. (unsigned int)lifetime);
  814. }
  815. /** Compute fingerprint (or hashed fingerprint if hashed is 1) and write
  816. * it to 'fingerprint' (or 'hashed-fingerprint'). Return 0 on success, or
  817. * -1 if Tor should die,
  818. */
  819. STATIC int
  820. router_write_fingerprint(int hashed)
  821. {
  822. char *keydir = NULL, *cp = NULL;
  823. const char *fname = hashed ? "hashed-fingerprint" :
  824. "fingerprint";
  825. char fingerprint[FINGERPRINT_LEN+1];
  826. const or_options_t *options = get_options();
  827. char *fingerprint_line = NULL;
  828. int result = -1;
  829. keydir = get_datadir_fname(fname);
  830. log_info(LD_GENERAL,"Dumping %sfingerprint to \"%s\"...",
  831. hashed ? "hashed " : "", keydir);
  832. if (!hashed) {
  833. if (crypto_pk_get_fingerprint(get_server_identity_key(),
  834. fingerprint, 0) < 0) {
  835. log_err(LD_GENERAL,"Error computing fingerprint");
  836. goto done;
  837. }
  838. } else {
  839. if (crypto_pk_get_hashed_fingerprint(get_server_identity_key(),
  840. fingerprint) < 0) {
  841. log_err(LD_GENERAL,"Error computing hashed fingerprint");
  842. goto done;
  843. }
  844. }
  845. tor_asprintf(&fingerprint_line, "%s %s\n", options->Nickname, fingerprint);
  846. /* Check whether we need to write the (hashed-)fingerprint file. */
  847. cp = read_file_to_str(keydir, RFTS_IGNORE_MISSING, NULL);
  848. if (!cp || strcmp(cp, fingerprint_line)) {
  849. if (write_str_to_file(keydir, fingerprint_line, 0)) {
  850. log_err(LD_FS, "Error writing %sfingerprint line to file",
  851. hashed ? "hashed " : "");
  852. goto done;
  853. }
  854. }
  855. log_notice(LD_GENERAL, "Your Tor %s identity key fingerprint is '%s %s'",
  856. hashed ? "bridge's hashed" : "server's", options->Nickname,
  857. fingerprint);
  858. result = 0;
  859. done:
  860. tor_free(cp);
  861. tor_free(keydir);
  862. tor_free(fingerprint_line);
  863. return result;
  864. }
  865. static int
  866. init_keys_common(void)
  867. {
  868. if (!key_lock)
  869. key_lock = tor_mutex_new();
  870. /* There are a couple of paths that put us here before we've asked
  871. * openssl to initialize itself. */
  872. if (crypto_global_init(get_options()->HardwareAccel,
  873. get_options()->AccelName,
  874. get_options()->AccelDir)) {
  875. log_err(LD_BUG, "Unable to initialize OpenSSL. Exiting.");
  876. return -1;
  877. }
  878. return 0;
  879. }
  880. int
  881. init_keys_client(void)
  882. {
  883. crypto_pk_t *prkey;
  884. if (init_keys_common() < 0)
  885. return -1;
  886. if (!(prkey = crypto_pk_new()))
  887. return -1;
  888. if (crypto_pk_generate_key(prkey)) {
  889. crypto_pk_free(prkey);
  890. return -1;
  891. }
  892. set_client_identity_key(prkey);
  893. /* Create a TLS context. */
  894. if (router_initialize_tls_context() < 0) {
  895. log_err(LD_GENERAL,"Error creating TLS context for Tor client.");
  896. return -1;
  897. }
  898. return 0;
  899. }
  900. /** Initialize all OR private keys, and the TLS context, as necessary.
  901. * On OPs, this only initializes the tls context. Return 0 on success,
  902. * or -1 if Tor should die.
  903. */
  904. int
  905. init_keys(void)
  906. {
  907. char *keydir;
  908. const char *mydesc;
  909. crypto_pk_t *prkey;
  910. char digest[DIGEST_LEN];
  911. char v3_digest[DIGEST_LEN];
  912. const or_options_t *options = get_options();
  913. dirinfo_type_t type;
  914. time_t now = time(NULL);
  915. dir_server_t *ds;
  916. int v3_digest_set = 0;
  917. authority_cert_t *cert = NULL;
  918. /* OP's don't need persistent keys; just make up an identity and
  919. * initialize the TLS context. */
  920. if (!server_mode(options)) {
  921. return init_keys_client();
  922. }
  923. if (init_keys_common() < 0)
  924. return -1;
  925. if (create_keys_directory(options) < 0)
  926. return -1;
  927. /* 1a. Read v3 directory authority key/cert information. */
  928. memset(v3_digest, 0, sizeof(v3_digest));
  929. if (authdir_mode_v3(options)) {
  930. if (init_v3_authority_keys()<0) {
  931. log_err(LD_GENERAL, "We're configured as a V3 authority, but we "
  932. "were unable to load our v3 authority keys and certificate! "
  933. "Use tor-gencert to generate them. Dying.");
  934. return -1;
  935. }
  936. cert = get_my_v3_authority_cert();
  937. if (cert) {
  938. if (crypto_pk_get_digest(get_my_v3_authority_cert()->identity_key,
  939. v3_digest) < 0) {
  940. log_err(LD_BUG, "Couldn't compute my v3 authority identity key "
  941. "digest.");
  942. return -1;
  943. }
  944. v3_digest_set = 1;
  945. }
  946. }
  947. /* 1b. Read identity key. Make it if none is found. */
  948. keydir = get_keydir_fname("secret_id_key");
  949. log_info(LD_GENERAL,"Reading/making identity key \"%s\"...",keydir);
  950. prkey = init_key_from_file(keydir, 1, LOG_ERR, 1);
  951. tor_free(keydir);
  952. if (!prkey) return -1;
  953. set_server_identity_key(prkey);
  954. /* 1c. If we are configured as a bridge, generate a client key;
  955. * otherwise, set the server identity key as our client identity
  956. * key. */
  957. if (public_server_mode(options)) {
  958. set_client_identity_key(crypto_pk_dup_key(prkey)); /* set above */
  959. } else {
  960. if (!(prkey = crypto_pk_new()))
  961. return -1;
  962. if (crypto_pk_generate_key(prkey)) {
  963. crypto_pk_free(prkey);
  964. return -1;
  965. }
  966. set_client_identity_key(prkey);
  967. }
  968. /* 1d. Load all ed25519 keys */
  969. const int new_signing_key = load_ed_keys(options,now);
  970. if (new_signing_key < 0)
  971. return -1;
  972. /* 2. Read onion key. Make it if none is found. */
  973. keydir = get_keydir_fname("secret_onion_key");
  974. log_info(LD_GENERAL,"Reading/making onion key \"%s\"...",keydir);
  975. prkey = init_key_from_file(keydir, 1, LOG_ERR, 1);
  976. tor_free(keydir);
  977. if (!prkey) return -1;
  978. set_onion_key(prkey);
  979. if (options->command == CMD_RUN_TOR) {
  980. /* only mess with the state file if we're actually running Tor */
  981. or_state_t *state = get_or_state();
  982. if (state->LastRotatedOnionKey > 100 && state->LastRotatedOnionKey < now) {
  983. /* We allow for some parsing slop, but we don't want to risk accepting
  984. * values in the distant future. If we did, we might never rotate the
  985. * onion key. */
  986. onionkey_set_at = state->LastRotatedOnionKey;
  987. } else {
  988. /* We have no LastRotatedOnionKey set; either we just created the key
  989. * or it's a holdover from 0.1.2.4-alpha-dev or earlier. In either case,
  990. * start the clock ticking now so that we will eventually rotate it even
  991. * if we don't stay up for the full lifetime of an onion key. */
  992. state->LastRotatedOnionKey = onionkey_set_at = now;
  993. or_state_mark_dirty(state, options->AvoidDiskWrites ?
  994. time(NULL)+3600 : 0);
  995. }
  996. }
  997. keydir = get_keydir_fname("secret_onion_key.old");
  998. if (!lastonionkey && file_status(keydir) == FN_FILE) {
  999. /* Load keys from non-empty files only.
  1000. * Missing old keys won't be replaced with freshly generated keys. */
  1001. prkey = init_key_from_file(keydir, 0, LOG_ERR, 0);
  1002. if (prkey)
  1003. lastonionkey = prkey;
  1004. }
  1005. tor_free(keydir);
  1006. {
  1007. /* 2b. Load curve25519 onion keys. */
  1008. int r;
  1009. keydir = get_keydir_fname("secret_onion_key_ntor");
  1010. r = init_curve25519_keypair_from_file(&curve25519_onion_key,
  1011. keydir, 1, LOG_ERR, "onion");
  1012. tor_free(keydir);
  1013. if (r<0)
  1014. return -1;
  1015. keydir = get_keydir_fname("secret_onion_key_ntor.old");
  1016. if (tor_mem_is_zero((const char *)
  1017. last_curve25519_onion_key.pubkey.public_key,
  1018. CURVE25519_PUBKEY_LEN) &&
  1019. file_status(keydir) == FN_FILE) {
  1020. /* Load keys from non-empty files only.
  1021. * Missing old keys won't be replaced with freshly generated keys. */
  1022. init_curve25519_keypair_from_file(&last_curve25519_onion_key,
  1023. keydir, 0, LOG_ERR, "onion");
  1024. }
  1025. tor_free(keydir);
  1026. }
  1027. /* 3. Initialize link key and TLS context. */
  1028. if (router_initialize_tls_context() < 0) {
  1029. log_err(LD_GENERAL,"Error initializing TLS context");
  1030. return -1;
  1031. }
  1032. /* 3b. Get an ed25519 link certificate. Note that we need to do this
  1033. * after we set up the TLS context */
  1034. if (generate_ed_link_cert(options, now, new_signing_key > 0) < 0) {
  1035. log_err(LD_GENERAL,"Couldn't make link cert");
  1036. return -1;
  1037. }
  1038. /* 4. Build our router descriptor. */
  1039. /* Must be called after keys are initialized. */
  1040. mydesc = router_get_my_descriptor();
  1041. if (authdir_mode_v3(options)) {
  1042. const char *m = NULL;
  1043. routerinfo_t *ri;
  1044. /* We need to add our own fingerprint so it gets recognized. */
  1045. if (dirserv_add_own_fingerprint(get_server_identity_key())) {
  1046. log_err(LD_GENERAL,"Error adding own fingerprint to set of relays");
  1047. return -1;
  1048. }
  1049. if (mydesc) {
  1050. was_router_added_t added;
  1051. ri = router_parse_entry_from_string(mydesc, NULL, 1, 0, NULL, NULL);
  1052. if (!ri) {
  1053. log_err(LD_GENERAL,"Generated a routerinfo we couldn't parse.");
  1054. return -1;
  1055. }
  1056. added = dirserv_add_descriptor(ri, &m, "self");
  1057. if (!WRA_WAS_ADDED(added)) {
  1058. if (!WRA_WAS_OUTDATED(added)) {
  1059. log_err(LD_GENERAL, "Unable to add own descriptor to directory: %s",
  1060. m?m:"<unknown error>");
  1061. return -1;
  1062. } else {
  1063. /* If the descriptor was outdated, that's ok. This can happen
  1064. * when some config options are toggled that affect workers, but
  1065. * we don't really need new keys yet so the descriptor doesn't
  1066. * change and the old one is still fresh. */
  1067. log_info(LD_GENERAL, "Couldn't add own descriptor to directory "
  1068. "after key init: %s This is usually not a problem.",
  1069. m?m:"<unknown error>");
  1070. }
  1071. }
  1072. }
  1073. }
  1074. /* 5. Dump fingerprint and possibly hashed fingerprint to files. */
  1075. if (router_write_fingerprint(0)) {
  1076. log_err(LD_FS, "Error writing fingerprint to file");
  1077. return -1;
  1078. }
  1079. if (!public_server_mode(options) && router_write_fingerprint(1)) {
  1080. log_err(LD_FS, "Error writing hashed fingerprint to file");
  1081. return -1;
  1082. }
  1083. if (!authdir_mode(options))
  1084. return 0;
  1085. /* 6. [authdirserver only] load approved-routers file */
  1086. if (dirserv_load_fingerprint_file() < 0) {
  1087. log_err(LD_GENERAL,"Error loading fingerprints");
  1088. return -1;
  1089. }
  1090. /* 6b. [authdirserver only] add own key to approved directories. */
  1091. crypto_pk_get_digest(get_server_identity_key(), digest);
  1092. type = ((options->V3AuthoritativeDir ?
  1093. (V3_DIRINFO|MICRODESC_DIRINFO|EXTRAINFO_DIRINFO) : NO_DIRINFO) |
  1094. (options->BridgeAuthoritativeDir ? BRIDGE_DIRINFO : NO_DIRINFO));
  1095. ds = router_get_trusteddirserver_by_digest(digest);
  1096. if (!ds) {
  1097. ds = trusted_dir_server_new(options->Nickname, NULL,
  1098. router_get_advertised_dir_port(options, 0),
  1099. router_get_advertised_or_port(options),
  1100. NULL,
  1101. digest,
  1102. v3_digest,
  1103. type, 0.0);
  1104. if (!ds) {
  1105. log_err(LD_GENERAL,"We want to be a directory authority, but we "
  1106. "couldn't add ourselves to the authority list. Failing.");
  1107. return -1;
  1108. }
  1109. dir_server_add(ds);
  1110. }
  1111. if (ds->type != type) {
  1112. log_warn(LD_DIR, "Configured authority type does not match authority "
  1113. "type in DirAuthority list. Adjusting. (%d v %d)",
  1114. type, ds->type);
  1115. ds->type = type;
  1116. }
  1117. if (v3_digest_set && (ds->type & V3_DIRINFO) &&
  1118. tor_memneq(v3_digest, ds->v3_identity_digest, DIGEST_LEN)) {
  1119. log_warn(LD_DIR, "V3 identity key does not match identity declared in "
  1120. "DirAuthority line. Adjusting.");
  1121. memcpy(ds->v3_identity_digest, v3_digest, DIGEST_LEN);
  1122. }
  1123. if (cert) { /* add my own cert to the list of known certs */
  1124. log_info(LD_DIR, "adding my own v3 cert");
  1125. if (trusted_dirs_load_certs_from_string(
  1126. cert->cache_info.signed_descriptor_body,
  1127. TRUSTED_DIRS_CERTS_SRC_SELF, 0,
  1128. NULL)<0) {
  1129. log_warn(LD_DIR, "Unable to parse my own v3 cert! Failing.");
  1130. return -1;
  1131. }
  1132. }
  1133. return 0; /* success */
  1134. }
  1135. /* Keep track of whether we should upload our server descriptor,
  1136. * and what type of server we are.
  1137. */
  1138. /** Whether we can reach our ORPort from the outside. */
  1139. static int can_reach_or_port = 0;
  1140. /** Whether we can reach our DirPort from the outside. */
  1141. static int can_reach_dir_port = 0;
  1142. /** Forget what we have learned about our reachability status. */
  1143. void
  1144. router_reset_reachability(void)
  1145. {
  1146. can_reach_or_port = can_reach_dir_port = 0;
  1147. }
  1148. /** Return 1 if we won't do reachability checks, because:
  1149. * - AssumeReachable is set, or
  1150. * - the network is disabled.
  1151. * Otherwise, return 0.
  1152. */
  1153. static int
  1154. router_reachability_checks_disabled(const or_options_t *options)
  1155. {
  1156. return options->AssumeReachable ||
  1157. net_is_disabled();
  1158. }
  1159. /** Return 0 if we need to do an ORPort reachability check, because:
  1160. * - no reachability check has been done yet, or
  1161. * - we've initiated reachability checks, but none have succeeded.
  1162. * Return 1 if we don't need to do an ORPort reachability check, because:
  1163. * - we've seen a successful reachability check, or
  1164. * - AssumeReachable is set, or
  1165. * - the network is disabled.
  1166. */
  1167. int
  1168. check_whether_orport_reachable(const or_options_t *options)
  1169. {
  1170. int reach_checks_disabled = router_reachability_checks_disabled(options);
  1171. return reach_checks_disabled ||
  1172. can_reach_or_port;
  1173. }
  1174. /** Return 0 if we need to do a DirPort reachability check, because:
  1175. * - no reachability check has been done yet, or
  1176. * - we've initiated reachability checks, but none have succeeded.
  1177. * Return 1 if we don't need to do a DirPort reachability check, because:
  1178. * - we've seen a successful reachability check, or
  1179. * - there is no DirPort set, or
  1180. * - AssumeReachable is set, or
  1181. * - the network is disabled.
  1182. */
  1183. int
  1184. check_whether_dirport_reachable(const or_options_t *options)
  1185. {
  1186. int reach_checks_disabled = router_reachability_checks_disabled(options) ||
  1187. !options->DirPort_set;
  1188. return reach_checks_disabled ||
  1189. can_reach_dir_port;
  1190. }
  1191. /** The lower threshold of remaining bandwidth required to advertise (or
  1192. * automatically provide) directory services */
  1193. /* XXX Should this be increased? */
  1194. #define MIN_BW_TO_ADVERTISE_DIRSERVER 51200
  1195. /** Return true iff we have enough configured bandwidth to advertise or
  1196. * automatically provide directory services from cache directory
  1197. * information. */
  1198. static int
  1199. router_has_bandwidth_to_be_dirserver(const or_options_t *options)
  1200. {
  1201. if (options->BandwidthRate < MIN_BW_TO_ADVERTISE_DIRSERVER) {
  1202. return 0;
  1203. }
  1204. if (options->RelayBandwidthRate > 0 &&
  1205. options->RelayBandwidthRate < MIN_BW_TO_ADVERTISE_DIRSERVER) {
  1206. return 0;
  1207. }
  1208. return 1;
  1209. }
  1210. /** Helper: Return 1 if we have sufficient resources for serving directory
  1211. * requests, return 0 otherwise.
  1212. * dir_port is either 0 or the configured DirPort number.
  1213. * If AccountingMax is set less than our advertised bandwidth, then don't
  1214. * serve requests. Likewise, if our advertised bandwidth is less than
  1215. * MIN_BW_TO_ADVERTISE_DIRSERVER, don't bother trying to serve requests.
  1216. */
  1217. static int
  1218. router_should_be_dirserver(const or_options_t *options, int dir_port)
  1219. {
  1220. static int advertising=1; /* start out assuming we will advertise */
  1221. int new_choice=1;
  1222. const char *reason = NULL;
  1223. if (accounting_is_enabled(options) &&
  1224. get_options()->AccountingRule != ACCT_IN) {
  1225. /* Don't spend bytes for directory traffic if we could end up hibernating,
  1226. * but allow DirPort otherwise. Some relay operators set AccountingMax
  1227. * because they're confused or to get statistics. Directory traffic has a
  1228. * much larger effect on output than input so there is no reason to turn it
  1229. * off if using AccountingRule in. */
  1230. int interval_length = accounting_get_interval_length();
  1231. uint32_t effective_bw = get_effective_bwrate(options);
  1232. uint64_t acc_bytes;
  1233. if (!interval_length) {
  1234. log_warn(LD_BUG, "An accounting interval is not allowed to be zero "
  1235. "seconds long. Raising to 1.");
  1236. interval_length = 1;
  1237. }
  1238. log_info(LD_GENERAL, "Calculating whether to advertise %s: effective "
  1239. "bwrate: %u, AccountingMax: "U64_FORMAT", "
  1240. "accounting interval length %d",
  1241. dir_port ? "dirport" : "begindir",
  1242. effective_bw, U64_PRINTF_ARG(options->AccountingMax),
  1243. interval_length);
  1244. acc_bytes = options->AccountingMax;
  1245. if (get_options()->AccountingRule == ACCT_SUM)
  1246. acc_bytes /= 2;
  1247. if (effective_bw >=
  1248. acc_bytes / interval_length) {
  1249. new_choice = 0;
  1250. reason = "AccountingMax enabled";
  1251. }
  1252. } else if (! router_has_bandwidth_to_be_dirserver(options)) {
  1253. /* if we're advertising a small amount */
  1254. new_choice = 0;
  1255. reason = "BandwidthRate under 50KB";
  1256. }
  1257. if (advertising != new_choice) {
  1258. if (new_choice == 1) {
  1259. if (dir_port > 0)
  1260. log_notice(LD_DIR, "Advertising DirPort as %d", dir_port);
  1261. else
  1262. log_notice(LD_DIR, "Advertising directory service support");
  1263. } else {
  1264. tor_assert(reason);
  1265. log_notice(LD_DIR, "Not advertising Dir%s (Reason: %s)",
  1266. dir_port ? "Port" : "ectory Service support", reason);
  1267. }
  1268. advertising = new_choice;
  1269. }
  1270. return advertising;
  1271. }
  1272. /** Return 1 if we are configured to accept either relay or directory requests
  1273. * from clients and we aren't at risk of exceeding our bandwidth limits, thus
  1274. * we should be a directory server. If not, return 0.
  1275. */
  1276. int
  1277. dir_server_mode(const or_options_t *options)
  1278. {
  1279. if (!options->DirCache)
  1280. return 0;
  1281. return options->DirPort_set ||
  1282. (server_mode(options) && router_has_bandwidth_to_be_dirserver(options));
  1283. }
  1284. /** Look at a variety of factors, and return 0 if we don't want to
  1285. * advertise the fact that we have a DirPort open or begindir support, else
  1286. * return 1.
  1287. *
  1288. * Where dir_port or supports_tunnelled_dir_requests are not relevant, they
  1289. * must be 0.
  1290. *
  1291. * Log a helpful message if we change our mind about whether to publish.
  1292. */
  1293. static int
  1294. decide_to_advertise_dir_impl(const or_options_t *options,
  1295. uint16_t dir_port,
  1296. int supports_tunnelled_dir_requests)
  1297. {
  1298. /* Part one: reasons to publish or not publish that aren't
  1299. * worth mentioning to the user, either because they're obvious
  1300. * or because they're normal behavior. */
  1301. /* short circuit the rest of the function */
  1302. if (!dir_port && !supports_tunnelled_dir_requests)
  1303. return 0;
  1304. if (authdir_mode(options)) /* always publish */
  1305. return 1;
  1306. if (net_is_disabled())
  1307. return 0;
  1308. if (dir_port && !router_get_advertised_dir_port(options, dir_port))
  1309. return 0;
  1310. if (supports_tunnelled_dir_requests &&
  1311. !router_get_advertised_or_port(options))
  1312. return 0;
  1313. /* Part two: consider config options that could make us choose to
  1314. * publish or not publish that the user might find surprising. */
  1315. return router_should_be_dirserver(options, dir_port);
  1316. }
  1317. /** Front-end to decide_to_advertise_dir_impl(): return 0 if we don't want to
  1318. * advertise the fact that we have a DirPort open, else return the
  1319. * DirPort we want to advertise.
  1320. */
  1321. static int
  1322. router_should_advertise_dirport(const or_options_t *options, uint16_t dir_port)
  1323. {
  1324. /* supports_tunnelled_dir_requests is not relevant, pass 0 */
  1325. return decide_to_advertise_dir_impl(options, dir_port, 0) ? dir_port : 0;
  1326. }
  1327. /** Front-end to decide_to_advertise_dir_impl(): return 0 if we don't want to
  1328. * advertise the fact that we support begindir requests, else return 1.
  1329. */
  1330. static int
  1331. router_should_advertise_begindir(const or_options_t *options,
  1332. int supports_tunnelled_dir_requests)
  1333. {
  1334. /* dir_port is not relevant, pass 0 */
  1335. return decide_to_advertise_dir_impl(options, 0,
  1336. supports_tunnelled_dir_requests);
  1337. }
  1338. /** Allocate and return a new extend_info_t that can be used to build
  1339. * a circuit to or through the router <b>r</b>. Uses the primary
  1340. * address of the router, so should only be called on a server. */
  1341. static extend_info_t *
  1342. extend_info_from_router(const routerinfo_t *r)
  1343. {
  1344. tor_addr_port_t ap;
  1345. tor_assert(r);
  1346. /* Make sure we don't need to check address reachability */
  1347. tor_assert_nonfatal(router_skip_or_reachability(get_options(), 0));
  1348. const ed25519_public_key_t *ed_id_key;
  1349. if (r->cache_info.signing_key_cert)
  1350. ed_id_key = &r->cache_info.signing_key_cert->signing_key;
  1351. else
  1352. ed_id_key = NULL;
  1353. router_get_prim_orport(r, &ap);
  1354. return extend_info_new(r->nickname, r->cache_info.identity_digest,
  1355. ed_id_key,
  1356. r->onion_pkey, r->onion_curve25519_pkey,
  1357. &ap.addr, ap.port);
  1358. }
  1359. /**See if we currently believe our ORPort or DirPort to be
  1360. * unreachable. If so, return 1 else return 0.
  1361. */
  1362. static int
  1363. router_should_check_reachability(int test_or, int test_dir)
  1364. {
  1365. const routerinfo_t *me = router_get_my_routerinfo();
  1366. const or_options_t *options = get_options();
  1367. if (!me)
  1368. return 0;
  1369. if (routerset_contains_router(options->ExcludeNodes, me, -1) &&
  1370. options->StrictNodes) {
  1371. /* If we've excluded ourself, and StrictNodes is set, we can't test
  1372. * ourself. */
  1373. if (test_or || test_dir) {
  1374. #define SELF_EXCLUDED_WARN_INTERVAL 3600
  1375. static ratelim_t warning_limit=RATELIM_INIT(SELF_EXCLUDED_WARN_INTERVAL);
  1376. log_fn_ratelim(&warning_limit, LOG_WARN, LD_CIRC,
  1377. "Can't peform self-tests for this relay: we have "
  1378. "listed ourself in ExcludeNodes, and StrictNodes is set. "
  1379. "We cannot learn whether we are usable, and will not "
  1380. "be able to advertise ourself.");
  1381. }
  1382. return 0;
  1383. }
  1384. return 1;
  1385. }
  1386. /** Some time has passed, or we just got new directory information.
  1387. * See if we currently believe our ORPort or DirPort to be
  1388. * unreachable. If so, launch a new test for it.
  1389. *
  1390. * For ORPort, we simply try making a circuit that ends at ourselves.
  1391. * Success is noticed in onionskin_answer().
  1392. *
  1393. * For DirPort, we make a connection via Tor to our DirPort and ask
  1394. * for our own server descriptor.
  1395. * Success is noticed in connection_dir_client_reached_eof().
  1396. */
  1397. void
  1398. router_do_reachability_checks(int test_or, int test_dir)
  1399. {
  1400. const routerinfo_t *me = router_get_my_routerinfo();
  1401. const or_options_t *options = get_options();
  1402. int orport_reachable = check_whether_orport_reachable(options);
  1403. tor_addr_t addr;
  1404. if (router_should_check_reachability(test_or, test_dir)) {
  1405. if (test_or && (!orport_reachable || !circuit_enough_testing_circs())) {
  1406. extend_info_t *ei = extend_info_from_router(me);
  1407. /* XXX IPv6 self testing */
  1408. log_info(LD_CIRC, "Testing %s of my ORPort: %s:%d.",
  1409. !orport_reachable ? "reachability" : "bandwidth",
  1410. fmt_addr32(me->addr), me->or_port);
  1411. circuit_launch_by_extend_info(CIRCUIT_PURPOSE_TESTING, ei,
  1412. CIRCLAUNCH_NEED_CAPACITY|CIRCLAUNCH_IS_INTERNAL);
  1413. extend_info_free(ei);
  1414. }
  1415. /* XXX IPv6 self testing */
  1416. tor_addr_from_ipv4h(&addr, me->addr);
  1417. if (test_dir && !check_whether_dirport_reachable(options) &&
  1418. !connection_get_by_type_addr_port_purpose(
  1419. CONN_TYPE_DIR, &addr, me->dir_port,
  1420. DIR_PURPOSE_FETCH_SERVERDESC)) {
  1421. tor_addr_port_t my_orport, my_dirport;
  1422. memcpy(&my_orport.addr, &addr, sizeof(addr));
  1423. memcpy(&my_dirport.addr, &addr, sizeof(addr));
  1424. my_orport.port = me->or_port;
  1425. my_dirport.port = me->dir_port;
  1426. /* ask myself, via tor, for my server descriptor. */
  1427. directory_request_t *req =
  1428. directory_request_new(DIR_PURPOSE_FETCH_SERVERDESC);
  1429. directory_request_set_or_addr_port(req, &my_orport);
  1430. directory_request_set_dir_addr_port(req, &my_dirport);
  1431. directory_request_set_directory_id_digest(req,
  1432. me->cache_info.identity_digest);
  1433. // ask via an anon circuit, connecting to our dirport.
  1434. directory_request_set_indirection(req, DIRIND_ANON_DIRPORT);
  1435. directory_request_set_resource(req, "authority.z");
  1436. directory_initiate_request(req);
  1437. directory_request_free(req);
  1438. }
  1439. }
  1440. }
  1441. /** Annotate that we found our ORPort reachable. */
  1442. void
  1443. router_orport_found_reachable(void)
  1444. {
  1445. const routerinfo_t *me = router_get_my_routerinfo();
  1446. const or_options_t *options = get_options();
  1447. if (!can_reach_or_port && me) {
  1448. char *address = tor_dup_ip(me->addr);
  1449. log_notice(LD_OR,"Self-testing indicates your ORPort is reachable from "
  1450. "the outside. Excellent.%s",
  1451. options->PublishServerDescriptor_ != NO_DIRINFO
  1452. && check_whether_dirport_reachable(options) ?
  1453. " Publishing server descriptor." : "");
  1454. can_reach_or_port = 1;
  1455. mark_my_descriptor_dirty("ORPort found reachable");
  1456. /* This is a significant enough change to upload immediately,
  1457. * at least in a test network */
  1458. if (options->TestingTorNetwork == 1) {
  1459. reschedule_descriptor_update_check();
  1460. }
  1461. control_event_server_status(LOG_NOTICE,
  1462. "REACHABILITY_SUCCEEDED ORADDRESS=%s:%d",
  1463. address, me->or_port);
  1464. tor_free(address);
  1465. }
  1466. }
  1467. /** Annotate that we found our DirPort reachable. */
  1468. void
  1469. router_dirport_found_reachable(void)
  1470. {
  1471. const routerinfo_t *me = router_get_my_routerinfo();
  1472. const or_options_t *options = get_options();
  1473. if (!can_reach_dir_port && me) {
  1474. char *address = tor_dup_ip(me->addr);
  1475. log_notice(LD_DIRSERV,"Self-testing indicates your DirPort is reachable "
  1476. "from the outside. Excellent.%s",
  1477. options->PublishServerDescriptor_ != NO_DIRINFO
  1478. && check_whether_orport_reachable(options) ?
  1479. " Publishing server descriptor." : "");
  1480. can_reach_dir_port = 1;
  1481. if (router_should_advertise_dirport(options, me->dir_port)) {
  1482. mark_my_descriptor_dirty("DirPort found reachable");
  1483. /* This is a significant enough change to upload immediately,
  1484. * at least in a test network */
  1485. if (options->TestingTorNetwork == 1) {
  1486. reschedule_descriptor_update_check();
  1487. }
  1488. }
  1489. control_event_server_status(LOG_NOTICE,
  1490. "REACHABILITY_SUCCEEDED DIRADDRESS=%s:%d",
  1491. address, me->dir_port);
  1492. tor_free(address);
  1493. }
  1494. }
  1495. /** We have enough testing circuits open. Send a bunch of "drop"
  1496. * cells down each of them, to exercise our bandwidth. */
  1497. void
  1498. router_perform_bandwidth_test(int num_circs, time_t now)
  1499. {
  1500. int num_cells = (int)(get_options()->BandwidthRate * 10 /
  1501. CELL_MAX_NETWORK_SIZE);
  1502. int max_cells = num_cells < CIRCWINDOW_START ?
  1503. num_cells : CIRCWINDOW_START;
  1504. int cells_per_circuit = max_cells / num_circs;
  1505. origin_circuit_t *circ = NULL;
  1506. log_notice(LD_OR,"Performing bandwidth self-test...done.");
  1507. while ((circ = circuit_get_next_by_pk_and_purpose(circ, NULL,
  1508. CIRCUIT_PURPOSE_TESTING))) {
  1509. /* dump cells_per_circuit drop cells onto this circ */
  1510. int i = cells_per_circuit;
  1511. if (circ->base_.state != CIRCUIT_STATE_OPEN)
  1512. continue;
  1513. circ->base_.timestamp_dirty = now;
  1514. while (i-- > 0) {
  1515. if (relay_send_command_from_edge(0, TO_CIRCUIT(circ),
  1516. RELAY_COMMAND_DROP,
  1517. NULL, 0, circ->cpath->prev)<0) {
  1518. return; /* stop if error */
  1519. }
  1520. }
  1521. }
  1522. }
  1523. /** Return true iff our network is in some sense disabled or shutting down:
  1524. * either we're hibernating, entering hibernation, or the network is turned
  1525. * off with DisableNetwork. */
  1526. int
  1527. net_is_disabled(void)
  1528. {
  1529. return get_options()->DisableNetwork || we_are_hibernating();
  1530. }
  1531. /** Return true iff our network is in some sense "completely disabled" either
  1532. * we're fully hibernating or the network is turned off with
  1533. * DisableNetwork. */
  1534. int
  1535. net_is_completely_disabled(void)
  1536. {
  1537. return get_options()->DisableNetwork || we_are_fully_hibernating();
  1538. }
  1539. /** Return true iff we believe ourselves to be an authoritative
  1540. * directory server.
  1541. */
  1542. int
  1543. authdir_mode(const or_options_t *options)
  1544. {
  1545. return options->AuthoritativeDir != 0;
  1546. }
  1547. /** Return true iff we are an authoritative directory server that is
  1548. * authoritative about receiving and serving descriptors of type
  1549. * <b>purpose</b> on its dirport.
  1550. */
  1551. int
  1552. authdir_mode_handles_descs(const or_options_t *options, int purpose)
  1553. {
  1554. if (BUG(purpose < 0)) /* Deprecated. */
  1555. return authdir_mode(options);
  1556. else if (purpose == ROUTER_PURPOSE_GENERAL)
  1557. return authdir_mode_v3(options);
  1558. else if (purpose == ROUTER_PURPOSE_BRIDGE)
  1559. return authdir_mode_bridge(options);
  1560. else
  1561. return 0;
  1562. }
  1563. /** Return true iff we are an authoritative directory server that
  1564. * publishes its own network statuses.
  1565. */
  1566. int
  1567. authdir_mode_publishes_statuses(const or_options_t *options)
  1568. {
  1569. if (authdir_mode_bridge(options))
  1570. return 0;
  1571. return authdir_mode(options);
  1572. }
  1573. /** Return true iff we are an authoritative directory server that
  1574. * tests reachability of the descriptors it learns about.
  1575. */
  1576. int
  1577. authdir_mode_tests_reachability(const or_options_t *options)
  1578. {
  1579. return authdir_mode(options);
  1580. }
  1581. /** Return true iff we believe ourselves to be a bridge authoritative
  1582. * directory server.
  1583. */
  1584. int
  1585. authdir_mode_bridge(const or_options_t *options)
  1586. {
  1587. return authdir_mode(options) && options->BridgeAuthoritativeDir != 0;
  1588. }
  1589. /** Return true iff we are trying to be a server.
  1590. */
  1591. MOCK_IMPL(int,
  1592. server_mode,(const or_options_t *options))
  1593. {
  1594. if (options->ClientOnly) return 0;
  1595. return (options->ORPort_set);
  1596. }
  1597. /** Return true iff we are trying to be a non-bridge server.
  1598. */
  1599. MOCK_IMPL(int,
  1600. public_server_mode,(const or_options_t *options))
  1601. {
  1602. if (!server_mode(options)) return 0;
  1603. return (!options->BridgeRelay);
  1604. }
  1605. /** Return true iff the combination of options in <b>options</b> and parameters
  1606. * in the consensus mean that we don't want to allow exits from circuits
  1607. * we got from addresses not known to be servers. */
  1608. int
  1609. should_refuse_unknown_exits(const or_options_t *options)
  1610. {
  1611. if (options->RefuseUnknownExits != -1) {
  1612. return options->RefuseUnknownExits;
  1613. } else {
  1614. return networkstatus_get_param(NULL, "refuseunknownexits", 1, 0, 1);
  1615. }
  1616. }
  1617. /** Remember if we've advertised ourselves to the dirservers. */
  1618. static int server_is_advertised=0;
  1619. /** Return true iff we have published our descriptor lately.
  1620. */
  1621. MOCK_IMPL(int,
  1622. advertised_server_mode,(void))
  1623. {
  1624. return server_is_advertised;
  1625. }
  1626. /**
  1627. * Called with a boolean: set whether we have recently published our
  1628. * descriptor.
  1629. */
  1630. static void
  1631. set_server_advertised(int s)
  1632. {
  1633. server_is_advertised = s;
  1634. }
  1635. /** Return true iff we are trying to proxy client connections. */
  1636. int
  1637. proxy_mode(const or_options_t *options)
  1638. {
  1639. (void)options;
  1640. SMARTLIST_FOREACH_BEGIN(get_configured_ports(), const port_cfg_t *, p) {
  1641. if (p->type == CONN_TYPE_AP_LISTENER ||
  1642. p->type == CONN_TYPE_AP_TRANS_LISTENER ||
  1643. p->type == CONN_TYPE_AP_DNS_LISTENER ||
  1644. p->type == CONN_TYPE_AP_NATD_LISTENER)
  1645. return 1;
  1646. } SMARTLIST_FOREACH_END(p);
  1647. return 0;
  1648. }
  1649. /** Decide if we're a publishable server. We are a publishable server if:
  1650. * - We don't have the ClientOnly option set
  1651. * and
  1652. * - We have the PublishServerDescriptor option set to non-empty
  1653. * and
  1654. * - We have ORPort set
  1655. * and
  1656. * - We believe our ORPort and DirPort (if present) are reachable from
  1657. * the outside; or
  1658. * - We believe our ORPort is reachable from the outside, and we can't
  1659. * check our DirPort because the consensus has no exits; or
  1660. * - We are an authoritative directory server.
  1661. */
  1662. static int
  1663. decide_if_publishable_server(void)
  1664. {
  1665. const or_options_t *options = get_options();
  1666. if (options->ClientOnly)
  1667. return 0;
  1668. if (options->PublishServerDescriptor_ == NO_DIRINFO)
  1669. return 0;
  1670. if (!server_mode(options))
  1671. return 0;
  1672. if (authdir_mode(options))
  1673. return 1;
  1674. if (!router_get_advertised_or_port(options))
  1675. return 0;
  1676. if (!check_whether_orport_reachable(options))
  1677. return 0;
  1678. if (router_have_consensus_path() == CONSENSUS_PATH_INTERNAL) {
  1679. /* All set: there are no exits in the consensus (maybe this is a tiny
  1680. * test network), so we can't check our DirPort reachability. */
  1681. return 1;
  1682. } else {
  1683. return check_whether_dirport_reachable(options);
  1684. }
  1685. }
  1686. /** Initiate server descriptor upload as reasonable (if server is publishable,
  1687. * etc). <b>force</b> is as for router_upload_dir_desc_to_dirservers.
  1688. *
  1689. * We need to rebuild the descriptor if it's dirty even if we're not
  1690. * uploading, because our reachability testing *uses* our descriptor to
  1691. * determine what IP address and ports to test.
  1692. */
  1693. void
  1694. consider_publishable_server(int force)
  1695. {
  1696. int rebuilt;
  1697. if (!server_mode(get_options()))
  1698. return;
  1699. rebuilt = router_rebuild_descriptor(0);
  1700. if (decide_if_publishable_server()) {
  1701. set_server_advertised(1);
  1702. if (rebuilt == 0)
  1703. router_upload_dir_desc_to_dirservers(force);
  1704. } else {
  1705. set_server_advertised(0);
  1706. }
  1707. }
  1708. /** Return the port of the first active listener of type
  1709. * <b>listener_type</b>. */
  1710. /** XXX not a very good interface. it's not reliable when there are
  1711. multiple listeners. */
  1712. uint16_t
  1713. router_get_active_listener_port_by_type_af(int listener_type,
  1714. sa_family_t family)
  1715. {
  1716. /* Iterate all connections, find one of the right kind and return
  1717. the port. Not very sophisticated or fast, but effective. */
  1718. smartlist_t *conns = get_connection_array();
  1719. SMARTLIST_FOREACH_BEGIN(conns, connection_t *, conn) {
  1720. if (conn->type == listener_type && !conn->marked_for_close &&
  1721. conn->socket_family == family) {
  1722. return conn->port;
  1723. }
  1724. } SMARTLIST_FOREACH_END(conn);
  1725. return 0;
  1726. }
  1727. /** Return the port that we should advertise as our ORPort; this is either
  1728. * the one configured in the ORPort option, or the one we actually bound to
  1729. * if ORPort is "auto".
  1730. */
  1731. uint16_t
  1732. router_get_advertised_or_port(const or_options_t *options)
  1733. {
  1734. return router_get_advertised_or_port_by_af(options, AF_INET);
  1735. }
  1736. /** As router_get_advertised_or_port(), but allows an address family argument.
  1737. */
  1738. uint16_t
  1739. router_get_advertised_or_port_by_af(const or_options_t *options,
  1740. sa_family_t family)
  1741. {
  1742. int port = get_first_advertised_port_by_type_af(CONN_TYPE_OR_LISTENER,
  1743. family);
  1744. (void)options;
  1745. /* If the port is in 'auto' mode, we have to use
  1746. router_get_listener_port_by_type(). */
  1747. if (port == CFG_AUTO_PORT)
  1748. return router_get_active_listener_port_by_type_af(CONN_TYPE_OR_LISTENER,
  1749. family);
  1750. return port;
  1751. }
  1752. /** Return the port that we should advertise as our DirPort;
  1753. * this is one of three possibilities:
  1754. * The one that is passed as <b>dirport</b> if the DirPort option is 0, or
  1755. * the one configured in the DirPort option,
  1756. * or the one we actually bound to if DirPort is "auto". */
  1757. uint16_t
  1758. router_get_advertised_dir_port(const or_options_t *options, uint16_t dirport)
  1759. {
  1760. int dirport_configured = get_primary_dir_port();
  1761. (void)options;
  1762. if (!dirport_configured)
  1763. return dirport;
  1764. if (dirport_configured == CFG_AUTO_PORT)
  1765. return router_get_active_listener_port_by_type_af(CONN_TYPE_DIR_LISTENER,
  1766. AF_INET);
  1767. return dirport_configured;
  1768. }
  1769. /*
  1770. * OR descriptor generation.
  1771. */
  1772. /** My routerinfo. */
  1773. static routerinfo_t *desc_routerinfo = NULL;
  1774. /** My extrainfo */
  1775. static extrainfo_t *desc_extrainfo = NULL;
  1776. /** Why did we most recently decide to regenerate our descriptor? Used to
  1777. * tell the authorities why we're sending it to them. */
  1778. static const char *desc_gen_reason = "uninitialized reason";
  1779. /** Since when has our descriptor been "clean"? 0 if we need to regenerate it
  1780. * now. */
  1781. static time_t desc_clean_since = 0;
  1782. /** Why did we mark the descriptor dirty? */
  1783. static const char *desc_dirty_reason = "Tor just started";
  1784. /** Boolean: do we need to regenerate the above? */
  1785. static int desc_needs_upload = 0;
  1786. /** OR only: If <b>force</b> is true, or we haven't uploaded this
  1787. * descriptor successfully yet, try to upload our signed descriptor to
  1788. * all the directory servers we know about.
  1789. */
  1790. void
  1791. router_upload_dir_desc_to_dirservers(int force)
  1792. {
  1793. const routerinfo_t *ri;
  1794. extrainfo_t *ei;
  1795. char *msg;
  1796. size_t desc_len, extra_len = 0, total_len;
  1797. dirinfo_type_t auth = get_options()->PublishServerDescriptor_;
  1798. ri = router_get_my_routerinfo();
  1799. if (!ri) {
  1800. log_info(LD_GENERAL, "No descriptor; skipping upload");
  1801. return;
  1802. }
  1803. ei = router_get_my_extrainfo();
  1804. if (auth == NO_DIRINFO)
  1805. return;
  1806. if (!force && !desc_needs_upload)
  1807. return;
  1808. log_info(LD_OR, "Uploading relay descriptor to directory authorities%s",
  1809. force ? " (forced)" : "");
  1810. desc_needs_upload = 0;
  1811. desc_len = ri->cache_info.signed_descriptor_len;
  1812. extra_len = ei ? ei->cache_info.signed_descriptor_len : 0;
  1813. total_len = desc_len + extra_len + 1;
  1814. msg = tor_malloc(total_len);
  1815. memcpy(msg, ri->cache_info.signed_descriptor_body, desc_len);
  1816. if (ei) {
  1817. memcpy(msg+desc_len, ei->cache_info.signed_descriptor_body, extra_len);
  1818. }
  1819. msg[desc_len+extra_len] = 0;
  1820. directory_post_to_dirservers(DIR_PURPOSE_UPLOAD_DIR,
  1821. (auth & BRIDGE_DIRINFO) ?
  1822. ROUTER_PURPOSE_BRIDGE :
  1823. ROUTER_PURPOSE_GENERAL,
  1824. auth, msg, desc_len, extra_len);
  1825. tor_free(msg);
  1826. }
  1827. /** OR only: Check whether my exit policy says to allow connection to
  1828. * conn. Return 0 if we accept; non-0 if we reject.
  1829. */
  1830. int
  1831. router_compare_to_my_exit_policy(const tor_addr_t *addr, uint16_t port)
  1832. {
  1833. const routerinfo_t *me = router_get_my_routerinfo();
  1834. if (!me) /* make sure routerinfo exists */
  1835. return -1;
  1836. /* make sure it's resolved to something. this way we can't get a
  1837. 'maybe' below. */
  1838. if (tor_addr_is_null(addr))
  1839. return -1;
  1840. /* look at router_get_my_routerinfo()->exit_policy for both the v4 and the
  1841. * v6 policies. The exit_policy field in router_get_my_routerinfo() is a
  1842. * bit unusual, in that it contains IPv6 and IPv6 entries. We don't want to
  1843. * look at router_get_my_routerinfo()->ipv6_exit_policy, since that's a port
  1844. * summary. */
  1845. if ((tor_addr_family(addr) == AF_INET ||
  1846. tor_addr_family(addr) == AF_INET6)) {
  1847. return compare_tor_addr_to_addr_policy(addr, port,
  1848. me->exit_policy) != ADDR_POLICY_ACCEPTED;
  1849. #if 0
  1850. } else if (tor_addr_family(addr) == AF_INET6) {
  1851. return get_options()->IPv6Exit &&
  1852. desc_routerinfo->ipv6_exit_policy &&
  1853. compare_tor_addr_to_short_policy(addr, port,
  1854. me->ipv6_exit_policy) != ADDR_POLICY_ACCEPTED;
  1855. #endif /* 0 */
  1856. } else {
  1857. return -1;
  1858. }
  1859. }
  1860. /** Return true iff my exit policy is reject *:*. Return -1 if we don't
  1861. * have a descriptor */
  1862. MOCK_IMPL(int,
  1863. router_my_exit_policy_is_reject_star,(void))
  1864. {
  1865. if (!router_get_my_routerinfo()) /* make sure routerinfo exists */
  1866. return -1;
  1867. return router_get_my_routerinfo()->policy_is_reject_star;
  1868. }
  1869. /** Return true iff I'm a server and <b>digest</b> is equal to
  1870. * my server identity key digest. */
  1871. int
  1872. router_digest_is_me(const char *digest)
  1873. {
  1874. return (server_identitykey &&
  1875. tor_memeq(server_identitykey_digest, digest, DIGEST_LEN));
  1876. }
  1877. /** Return my identity digest. */
  1878. const uint8_t *
  1879. router_get_my_id_digest(void)
  1880. {
  1881. return (const uint8_t *)server_identitykey_digest;
  1882. }
  1883. /** Return true iff I'm a server and <b>digest</b> is equal to
  1884. * my identity digest. */
  1885. int
  1886. router_extrainfo_digest_is_me(const char *digest)
  1887. {
  1888. extrainfo_t *ei = router_get_my_extrainfo();
  1889. if (!ei)
  1890. return 0;
  1891. return tor_memeq(digest,
  1892. ei->cache_info.signed_descriptor_digest,
  1893. DIGEST_LEN);
  1894. }
  1895. /** A wrapper around router_digest_is_me(). */
  1896. int
  1897. router_is_me(const routerinfo_t *router)
  1898. {
  1899. return router_digest_is_me(router->cache_info.identity_digest);
  1900. }
  1901. /** Return a routerinfo for this OR, rebuilding a fresh one if
  1902. * necessary. Return NULL on error, or if called on an OP. */
  1903. MOCK_IMPL(const routerinfo_t *,
  1904. router_get_my_routerinfo,(void))
  1905. {
  1906. return router_get_my_routerinfo_with_err(NULL);
  1907. }
  1908. /** Return routerinfo of this OR. Rebuild it from
  1909. * scratch if needed. Set <b>*err</b> to 0 on success or to
  1910. * appropriate TOR_ROUTERINFO_ERROR_* value on failure.
  1911. */
  1912. MOCK_IMPL(const routerinfo_t *,
  1913. router_get_my_routerinfo_with_err,(int *err))
  1914. {
  1915. if (!server_mode(get_options())) {
  1916. if (err)
  1917. *err = TOR_ROUTERINFO_ERROR_NOT_A_SERVER;
  1918. return NULL;
  1919. }
  1920. if (!desc_clean_since) {
  1921. int rebuild_err = router_rebuild_descriptor(0);
  1922. if (rebuild_err < 0) {
  1923. if (err)
  1924. *err = rebuild_err;
  1925. return NULL;
  1926. }
  1927. }
  1928. if (!desc_routerinfo) {
  1929. if (err)
  1930. *err = TOR_ROUTERINFO_ERROR_DESC_REBUILDING;
  1931. return NULL;
  1932. }
  1933. if (err)
  1934. *err = 0;
  1935. return desc_routerinfo;
  1936. }
  1937. /** OR only: Return a signed server descriptor for this OR, rebuilding a fresh
  1938. * one if necessary. Return NULL on error.
  1939. */
  1940. const char *
  1941. router_get_my_descriptor(void)
  1942. {
  1943. const char *body;
  1944. const routerinfo_t *me = router_get_my_routerinfo();
  1945. if (! me)
  1946. return NULL;
  1947. tor_assert(me->cache_info.saved_location == SAVED_NOWHERE);
  1948. body = signed_descriptor_get_body(&me->cache_info);
  1949. /* Make sure this is nul-terminated. */
  1950. tor_assert(!body[me->cache_info.signed_descriptor_len]);
  1951. log_debug(LD_GENERAL,"my desc is '%s'", body);
  1952. return body;
  1953. }
  1954. /** Return the extrainfo document for this OR, or NULL if we have none.
  1955. * Rebuilt it (and the server descriptor) if necessary. */
  1956. extrainfo_t *
  1957. router_get_my_extrainfo(void)
  1958. {
  1959. if (!server_mode(get_options()))
  1960. return NULL;
  1961. if (router_rebuild_descriptor(0))
  1962. return NULL;
  1963. return desc_extrainfo;
  1964. }
  1965. /** Return a human-readable string describing what triggered us to generate
  1966. * our current descriptor, or NULL if we don't know. */
  1967. const char *
  1968. router_get_descriptor_gen_reason(void)
  1969. {
  1970. return desc_gen_reason;
  1971. }
  1972. /** A list of nicknames that we've warned about including in our family
  1973. * declaration verbatim rather than as digests. */
  1974. static smartlist_t *warned_nonexistent_family = NULL;
  1975. static int router_guess_address_from_dir_headers(uint32_t *guess);
  1976. /** Make a current best guess at our address, either because
  1977. * it's configured in torrc, or because we've learned it from
  1978. * dirserver headers. Place the answer in *<b>addr</b> and return
  1979. * 0 on success, else return -1 if we have no guess.
  1980. *
  1981. * If <b>cache_only</b> is true, just return any cached answers, and
  1982. * don't try to get any new answers.
  1983. */
  1984. MOCK_IMPL(int,
  1985. router_pick_published_address,(const or_options_t *options, uint32_t *addr,
  1986. int cache_only))
  1987. {
  1988. /* First, check the cached output from resolve_my_address(). */
  1989. *addr = get_last_resolved_addr();
  1990. if (*addr)
  1991. return 0;
  1992. /* Second, consider doing a resolve attempt right here. */
  1993. if (!cache_only) {
  1994. if (resolve_my_address(LOG_INFO, options, addr, NULL, NULL) >= 0) {
  1995. log_info(LD_CONFIG,"Success: chose address '%s'.", fmt_addr32(*addr));
  1996. return 0;
  1997. }
  1998. }
  1999. /* Third, check the cached output from router_new_address_suggestion(). */
  2000. if (router_guess_address_from_dir_headers(addr) >= 0)
  2001. return 0;
  2002. /* We have no useful cached answers. Return failure. */
  2003. return -1;
  2004. }
  2005. /* Like router_check_descriptor_address_consistency, but specifically for the
  2006. * ORPort or DirPort.
  2007. * listener_type is either CONN_TYPE_OR_LISTENER or CONN_TYPE_DIR_LISTENER. */
  2008. static void
  2009. router_check_descriptor_address_port_consistency(uint32_t ipv4h_desc_addr,
  2010. int listener_type)
  2011. {
  2012. tor_assert(listener_type == CONN_TYPE_OR_LISTENER ||
  2013. listener_type == CONN_TYPE_DIR_LISTENER);
  2014. /* The first advertised Port may be the magic constant CFG_AUTO_PORT.
  2015. */
  2016. int port_v4_cfg = get_first_advertised_port_by_type_af(listener_type,
  2017. AF_INET);
  2018. if (port_v4_cfg != 0 &&
  2019. !port_exists_by_type_addr32h_port(listener_type,
  2020. ipv4h_desc_addr, port_v4_cfg, 1)) {
  2021. const tor_addr_t *port_addr = get_first_advertised_addr_by_type_af(
  2022. listener_type,
  2023. AF_INET);
  2024. /* If we're building a descriptor with no advertised address,
  2025. * something is terribly wrong. */
  2026. tor_assert(port_addr);
  2027. tor_addr_t desc_addr;
  2028. char port_addr_str[TOR_ADDR_BUF_LEN];
  2029. char desc_addr_str[TOR_ADDR_BUF_LEN];
  2030. tor_addr_to_str(port_addr_str, port_addr, TOR_ADDR_BUF_LEN, 0);
  2031. tor_addr_from_ipv4h(&desc_addr, ipv4h_desc_addr);
  2032. tor_addr_to_str(desc_addr_str, &desc_addr, TOR_ADDR_BUF_LEN, 0);
  2033. const char *listener_str = (listener_type == CONN_TYPE_OR_LISTENER ?
  2034. "OR" : "Dir");
  2035. log_warn(LD_CONFIG, "The IPv4 %sPort address %s does not match the "
  2036. "descriptor address %s. If you have a static public IPv4 "
  2037. "address, use 'Address <IPv4>' and 'OutboundBindAddress "
  2038. "<IPv4>'. If you are behind a NAT, use two %sPort lines: "
  2039. "'%sPort <PublicPort> NoListen' and '%sPort <InternalPort> "
  2040. "NoAdvertise'.",
  2041. listener_str, port_addr_str, desc_addr_str, listener_str,
  2042. listener_str, listener_str);
  2043. }
  2044. }
  2045. /* Tor relays only have one IPv4 address in the descriptor, which is derived
  2046. * from the Address torrc option, or guessed using various methods in
  2047. * router_pick_published_address().
  2048. * Warn the operator if there is no ORPort on the descriptor address
  2049. * ipv4h_desc_addr.
  2050. * Warn the operator if there is no DirPort on the descriptor address.
  2051. * This catches a few common config errors:
  2052. * - operators who expect ORPorts and DirPorts to be advertised on the
  2053. * ports' listen addresses, rather than the torrc Address (or guessed
  2054. * addresses in the absence of an Address config). This includes
  2055. * operators who attempt to put their ORPort and DirPort on different
  2056. * addresses;
  2057. * - discrepancies between guessed addresses and configured listen
  2058. * addresses (when the Address option isn't set).
  2059. * If a listener is listening on all IPv4 addresses, it is assumed that it
  2060. * is listening on the configured Address, and no messages are logged.
  2061. * If an operators has specified NoAdvertise ORPorts in a NAT setting,
  2062. * no messages are logged, unless they have specified other advertised
  2063. * addresses.
  2064. * The message tells operators to configure an ORPort and DirPort that match
  2065. * the Address (using NoListen if needed).
  2066. */
  2067. static void
  2068. router_check_descriptor_address_consistency(uint32_t ipv4h_desc_addr)
  2069. {
  2070. router_check_descriptor_address_port_consistency(ipv4h_desc_addr,
  2071. CONN_TYPE_OR_LISTENER);
  2072. router_check_descriptor_address_port_consistency(ipv4h_desc_addr,
  2073. CONN_TYPE_DIR_LISTENER);
  2074. }
  2075. /** Build a fresh routerinfo, signed server descriptor, and extra-info document
  2076. * for this OR. Set r to the generated routerinfo, e to the generated
  2077. * extra-info document. Return 0 on success, -1 on temporary error. Failure to
  2078. * generate an extra-info document is not an error and is indicated by setting
  2079. * e to NULL. Caller is responsible for freeing generated documents if 0 is
  2080. * returned.
  2081. */
  2082. int
  2083. router_build_fresh_descriptor(routerinfo_t **r, extrainfo_t **e)
  2084. {
  2085. routerinfo_t *ri;
  2086. extrainfo_t *ei;
  2087. uint32_t addr;
  2088. char platform[256];
  2089. int hibernating = we_are_hibernating();
  2090. const or_options_t *options = get_options();
  2091. if (router_pick_published_address(options, &addr, 0) < 0) {
  2092. log_warn(LD_CONFIG, "Don't know my address while generating descriptor");
  2093. return TOR_ROUTERINFO_ERROR_NO_EXT_ADDR;
  2094. }
  2095. /* Log a message if the address in the descriptor doesn't match the ORPort
  2096. * and DirPort addresses configured by the operator. */
  2097. router_check_descriptor_address_consistency(addr);
  2098. ri = tor_malloc_zero(sizeof(routerinfo_t));
  2099. ri->cache_info.routerlist_index = -1;
  2100. ri->nickname = tor_strdup(options->Nickname);
  2101. ri->addr = addr;
  2102. ri->or_port = router_get_advertised_or_port(options);
  2103. ri->dir_port = router_get_advertised_dir_port(options, 0);
  2104. ri->supports_tunnelled_dir_requests =
  2105. directory_permits_begindir_requests(options);
  2106. ri->cache_info.published_on = time(NULL);
  2107. ri->onion_pkey = crypto_pk_dup_key(get_onion_key()); /* must invoke from
  2108. * main thread */
  2109. ri->onion_curve25519_pkey =
  2110. tor_memdup(&get_current_curve25519_keypair()->pubkey,
  2111. sizeof(curve25519_public_key_t));
  2112. /* For now, at most one IPv6 or-address is being advertised. */
  2113. {
  2114. const port_cfg_t *ipv6_orport = NULL;
  2115. SMARTLIST_FOREACH_BEGIN(get_configured_ports(), const port_cfg_t *, p) {
  2116. if (p->type == CONN_TYPE_OR_LISTENER &&
  2117. ! p->server_cfg.no_advertise &&
  2118. ! p->server_cfg.bind_ipv4_only &&
  2119. tor_addr_family(&p->addr) == AF_INET6) {
  2120. /* Like IPv4, if the relay is configured using the default
  2121. * authorities, disallow internal IPs. Otherwise, allow them. */
  2122. const int default_auth = using_default_dir_authorities(options);
  2123. if (! tor_addr_is_internal(&p->addr, 0) || ! default_auth) {
  2124. ipv6_orport = p;
  2125. break;
  2126. } else {
  2127. char addrbuf[TOR_ADDR_BUF_LEN];
  2128. log_warn(LD_CONFIG,
  2129. "Unable to use configured IPv6 address \"%s\" in a "
  2130. "descriptor. Skipping it. "
  2131. "Try specifying a globally reachable address explicitly.",
  2132. tor_addr_to_str(addrbuf, &p->addr, sizeof(addrbuf), 1));
  2133. }
  2134. }
  2135. } SMARTLIST_FOREACH_END(p);
  2136. if (ipv6_orport) {
  2137. tor_addr_copy(&ri->ipv6_addr, &ipv6_orport->addr);
  2138. ri->ipv6_orport = ipv6_orport->port;
  2139. }
  2140. }
  2141. ri->identity_pkey = crypto_pk_dup_key(get_server_identity_key());
  2142. if (crypto_pk_get_digest(ri->identity_pkey,
  2143. ri->cache_info.identity_digest)<0) {
  2144. routerinfo_free(ri);
  2145. return TOR_ROUTERINFO_ERROR_DIGEST_FAILED;
  2146. }
  2147. ri->cache_info.signing_key_cert =
  2148. tor_cert_dup(get_master_signing_key_cert());
  2149. get_platform_str(platform, sizeof(platform));
  2150. ri->platform = tor_strdup(platform);
  2151. ri->protocol_list = tor_strdup(protover_get_supported_protocols());
  2152. /* compute ri->bandwidthrate as the min of various options */
  2153. ri->bandwidthrate = get_effective_bwrate(options);
  2154. /* and compute ri->bandwidthburst similarly */
  2155. ri->bandwidthburst = get_effective_bwburst(options);
  2156. /* Report bandwidth, unless we're hibernating or shutting down */
  2157. ri->bandwidthcapacity = hibernating ? 0 : rep_hist_bandwidth_assess();
  2158. if (dns_seems_to_be_broken() || has_dns_init_failed()) {
  2159. /* DNS is screwed up; don't claim to be an exit. */
  2160. policies_exit_policy_append_reject_star(&ri->exit_policy);
  2161. } else {
  2162. policies_parse_exit_policy_from_options(options,ri->addr,&ri->ipv6_addr,
  2163. &ri->exit_policy);
  2164. }
  2165. ri->policy_is_reject_star =
  2166. policy_is_reject_star(ri->exit_policy, AF_INET, 1) &&
  2167. policy_is_reject_star(ri->exit_policy, AF_INET6, 1);
  2168. if (options->IPv6Exit) {
  2169. char *p_tmp = policy_summarize(ri->exit_policy, AF_INET6);
  2170. if (p_tmp)
  2171. ri->ipv6_exit_policy = parse_short_policy(p_tmp);
  2172. tor_free(p_tmp);
  2173. }
  2174. if (options->MyFamily && ! options->BridgeRelay) {
  2175. if (!warned_nonexistent_family)
  2176. warned_nonexistent_family = smartlist_new();
  2177. ri->declared_family = smartlist_new();
  2178. config_line_t *family;
  2179. for (family = options->MyFamily; family; family = family->next) {
  2180. char *name = family->value;
  2181. const node_t *member;
  2182. if (!strcasecmp(name, options->Nickname))
  2183. continue; /* Don't list ourself, that's redundant */
  2184. else
  2185. member = node_get_by_nickname(name, 0);
  2186. if (!member) {
  2187. int is_legal = is_legal_nickname_or_hexdigest(name);
  2188. if (!smartlist_contains_string(warned_nonexistent_family, name) &&
  2189. !is_legal_hexdigest(name)) {
  2190. if (is_legal)
  2191. log_warn(LD_CONFIG,
  2192. "I have no descriptor for the router named \"%s\" in my "
  2193. "declared family; I'll use the nickname as is, but "
  2194. "this may confuse clients.", name);
  2195. else
  2196. log_warn(LD_CONFIG, "There is a router named \"%s\" in my "
  2197. "declared family, but that isn't a legal nickname. "
  2198. "Skipping it.", escaped(name));
  2199. smartlist_add_strdup(warned_nonexistent_family, name);
  2200. }
  2201. if (is_legal) {
  2202. smartlist_add_strdup(ri->declared_family, name);
  2203. }
  2204. } else if (router_digest_is_me(member->identity)) {
  2205. /* Don't list ourself in our own family; that's redundant */
  2206. /* XXX shouldn't be possible */
  2207. } else {
  2208. char *fp = tor_malloc(HEX_DIGEST_LEN+2);
  2209. fp[0] = '$';
  2210. base16_encode(fp+1,HEX_DIGEST_LEN+1,
  2211. member->identity, DIGEST_LEN);
  2212. smartlist_add(ri->declared_family, fp);
  2213. if (smartlist_contains_string(warned_nonexistent_family, name))
  2214. smartlist_string_remove(warned_nonexistent_family, name);
  2215. }
  2216. }
  2217. /* remove duplicates from the list */
  2218. smartlist_sort_strings(ri->declared_family);
  2219. smartlist_uniq_strings(ri->declared_family);
  2220. }
  2221. /* Now generate the extrainfo. */
  2222. ei = tor_malloc_zero(sizeof(extrainfo_t));
  2223. ei->cache_info.is_extrainfo = 1;
  2224. strlcpy(ei->nickname, get_options()->Nickname, sizeof(ei->nickname));
  2225. ei->cache_info.published_on = ri->cache_info.published_on;
  2226. ei->cache_info.signing_key_cert =
  2227. tor_cert_dup(get_master_signing_key_cert());
  2228. memcpy(ei->cache_info.identity_digest, ri->cache_info.identity_digest,
  2229. DIGEST_LEN);
  2230. if (extrainfo_dump_to_string(&ei->cache_info.signed_descriptor_body,
  2231. ei, get_server_identity_key(),
  2232. get_master_signing_keypair()) < 0) {
  2233. log_warn(LD_BUG, "Couldn't generate extra-info descriptor.");
  2234. extrainfo_free(ei);
  2235. ei = NULL;
  2236. } else {
  2237. ei->cache_info.signed_descriptor_len =
  2238. strlen(ei->cache_info.signed_descriptor_body);
  2239. router_get_extrainfo_hash(ei->cache_info.signed_descriptor_body,
  2240. ei->cache_info.signed_descriptor_len,
  2241. ei->cache_info.signed_descriptor_digest);
  2242. crypto_digest256((char*) ei->digest256,
  2243. ei->cache_info.signed_descriptor_body,
  2244. ei->cache_info.signed_descriptor_len,
  2245. DIGEST_SHA256);
  2246. }
  2247. /* Now finish the router descriptor. */
  2248. if (ei) {
  2249. memcpy(ri->cache_info.extra_info_digest,
  2250. ei->cache_info.signed_descriptor_digest,
  2251. DIGEST_LEN);
  2252. memcpy(ri->cache_info.extra_info_digest256,
  2253. ei->digest256,
  2254. DIGEST256_LEN);
  2255. } else {
  2256. /* ri was allocated with tor_malloc_zero, so there is no need to
  2257. * zero ri->cache_info.extra_info_digest here. */
  2258. }
  2259. if (! (ri->cache_info.signed_descriptor_body =
  2260. router_dump_router_to_string(ri, get_server_identity_key(),
  2261. get_onion_key(),
  2262. get_current_curve25519_keypair(),
  2263. get_master_signing_keypair())) ) {
  2264. log_warn(LD_BUG, "Couldn't generate router descriptor.");
  2265. routerinfo_free(ri);
  2266. extrainfo_free(ei);
  2267. return TOR_ROUTERINFO_ERROR_CANNOT_GENERATE;
  2268. }
  2269. ri->cache_info.signed_descriptor_len =
  2270. strlen(ri->cache_info.signed_descriptor_body);
  2271. ri->purpose =
  2272. options->BridgeRelay ? ROUTER_PURPOSE_BRIDGE : ROUTER_PURPOSE_GENERAL;
  2273. if (options->BridgeRelay) {
  2274. /* Bridges shouldn't be able to send their descriptors unencrypted,
  2275. anyway, since they don't have a DirPort, and always connect to the
  2276. bridge authority anonymously. But just in case they somehow think of
  2277. sending them on an unencrypted connection, don't allow them to try. */
  2278. ri->cache_info.send_unencrypted = 0;
  2279. if (ei)
  2280. ei->cache_info.send_unencrypted = 0;
  2281. } else {
  2282. ri->cache_info.send_unencrypted = 1;
  2283. if (ei)
  2284. ei->cache_info.send_unencrypted = 1;
  2285. }
  2286. router_get_router_hash(ri->cache_info.signed_descriptor_body,
  2287. strlen(ri->cache_info.signed_descriptor_body),
  2288. ri->cache_info.signed_descriptor_digest);
  2289. if (ei) {
  2290. tor_assert(!
  2291. routerinfo_incompatible_with_extrainfo(ri->identity_pkey, ei,
  2292. &ri->cache_info, NULL));
  2293. }
  2294. *r = ri;
  2295. *e = ei;
  2296. return 0;
  2297. }
  2298. /** If <b>force</b> is true, or our descriptor is out-of-date, rebuild a fresh
  2299. * routerinfo, signed server descriptor, and extra-info document for this OR.
  2300. * Return 0 on success, -1 on temporary error.
  2301. */
  2302. int
  2303. router_rebuild_descriptor(int force)
  2304. {
  2305. int err = 0;
  2306. routerinfo_t *ri;
  2307. extrainfo_t *ei;
  2308. uint32_t addr;
  2309. const or_options_t *options = get_options();
  2310. if (desc_clean_since && !force)
  2311. return 0;
  2312. if (router_pick_published_address(options, &addr, 0) < 0 ||
  2313. router_get_advertised_or_port(options) == 0) {
  2314. /* Stop trying to rebuild our descriptor every second. We'll
  2315. * learn that it's time to try again when ip_address_changed()
  2316. * marks it dirty. */
  2317. desc_clean_since = time(NULL);
  2318. return TOR_ROUTERINFO_ERROR_DESC_REBUILDING;
  2319. }
  2320. log_info(LD_OR, "Rebuilding relay descriptor%s", force ? " (forced)" : "");
  2321. err = router_build_fresh_descriptor(&ri, &ei);
  2322. if (err < 0) {
  2323. return err;
  2324. }
  2325. routerinfo_free(desc_routerinfo);
  2326. desc_routerinfo = ri;
  2327. extrainfo_free(desc_extrainfo);
  2328. desc_extrainfo = ei;
  2329. desc_clean_since = time(NULL);
  2330. desc_needs_upload = 1;
  2331. desc_gen_reason = desc_dirty_reason;
  2332. if (BUG(desc_gen_reason == NULL)) {
  2333. desc_gen_reason = "descriptor was marked dirty earlier, for no reason.";
  2334. }
  2335. desc_dirty_reason = NULL;
  2336. control_event_my_descriptor_changed();
  2337. return 0;
  2338. }
  2339. /** If our router descriptor ever goes this long without being regenerated
  2340. * because something changed, we force an immediate regenerate-and-upload. */
  2341. #define FORCE_REGENERATE_DESCRIPTOR_INTERVAL (18*60*60)
  2342. /** If our router descriptor seems to be missing or unacceptable according
  2343. * to the authorities, regenerate and reupload it _this_ often. */
  2344. #define FAST_RETRY_DESCRIPTOR_INTERVAL (90*60)
  2345. /** Mark descriptor out of date if it's been "too long" since we last tried
  2346. * to upload one. */
  2347. void
  2348. mark_my_descriptor_dirty_if_too_old(time_t now)
  2349. {
  2350. networkstatus_t *ns;
  2351. const routerstatus_t *rs;
  2352. const char *retry_fast_reason = NULL; /* Set if we should retry frequently */
  2353. const time_t slow_cutoff = now - FORCE_REGENERATE_DESCRIPTOR_INTERVAL;
  2354. const time_t fast_cutoff = now - FAST_RETRY_DESCRIPTOR_INTERVAL;
  2355. /* If it's already dirty, don't mark it. */
  2356. if (! desc_clean_since)
  2357. return;
  2358. /* If it's older than FORCE_REGENERATE_DESCRIPTOR_INTERVAL, it's always
  2359. * time to rebuild it. */
  2360. if (desc_clean_since < slow_cutoff) {
  2361. mark_my_descriptor_dirty("time for new descriptor");
  2362. return;
  2363. }
  2364. /* Now we see whether we want to be retrying frequently or no. The
  2365. * rule here is that we'll retry frequently if we aren't listed in the
  2366. * live consensus we have, or if the publication time of the
  2367. * descriptor listed for us in the consensus is very old. */
  2368. ns = networkstatus_get_live_consensus(now);
  2369. if (ns) {
  2370. rs = networkstatus_vote_find_entry(ns, server_identitykey_digest);
  2371. if (rs == NULL)
  2372. retry_fast_reason = "not listed in consensus";
  2373. else if (rs->published_on < slow_cutoff)
  2374. retry_fast_reason = "version listed in consensus is quite old";
  2375. }
  2376. if (retry_fast_reason && desc_clean_since < fast_cutoff)
  2377. mark_my_descriptor_dirty(retry_fast_reason);
  2378. }
  2379. /** Call when the current descriptor is out of date. */
  2380. void
  2381. mark_my_descriptor_dirty(const char *reason)
  2382. {
  2383. const or_options_t *options = get_options();
  2384. if (BUG(reason == NULL)) {
  2385. reason = "marked descriptor dirty for unspecified reason";
  2386. }
  2387. if (server_mode(options) && options->PublishServerDescriptor_)
  2388. log_info(LD_OR, "Decided to publish new relay descriptor: %s", reason);
  2389. desc_clean_since = 0;
  2390. if (!desc_dirty_reason)
  2391. desc_dirty_reason = reason;
  2392. }
  2393. /** How frequently will we republish our descriptor because of large (factor
  2394. * of 2) shifts in estimated bandwidth? Note: We don't use this constant
  2395. * if our previous bandwidth estimate was exactly 0. */
  2396. #define MAX_BANDWIDTH_CHANGE_FREQ (3*60*60)
  2397. /** Check whether bandwidth has changed a lot since the last time we announced
  2398. * bandwidth. If so, mark our descriptor dirty. */
  2399. void
  2400. check_descriptor_bandwidth_changed(time_t now)
  2401. {
  2402. static time_t last_changed = 0;
  2403. uint64_t prev, cur;
  2404. if (!router_get_my_routerinfo())
  2405. return;
  2406. prev = router_get_my_routerinfo()->bandwidthcapacity;
  2407. /* Consider ourselves to have zero bandwidth if we're hibernating or
  2408. * shutting down. */
  2409. cur = we_are_hibernating() ? 0 : rep_hist_bandwidth_assess();
  2410. if ((prev != cur && (!prev || !cur)) ||
  2411. cur > prev*2 ||
  2412. cur < prev/2) {
  2413. if (last_changed+MAX_BANDWIDTH_CHANGE_FREQ < now || !prev) {
  2414. log_info(LD_GENERAL,
  2415. "Measured bandwidth has changed; rebuilding descriptor.");
  2416. mark_my_descriptor_dirty("bandwidth has changed");
  2417. last_changed = now;
  2418. }
  2419. }
  2420. }
  2421. /** Note at log level severity that our best guess of address has changed from
  2422. * <b>prev</b> to <b>cur</b>. */
  2423. static void
  2424. log_addr_has_changed(int severity,
  2425. const tor_addr_t *prev,
  2426. const tor_addr_t *cur,
  2427. const char *source)
  2428. {
  2429. char addrbuf_prev[TOR_ADDR_BUF_LEN];
  2430. char addrbuf_cur[TOR_ADDR_BUF_LEN];
  2431. if (tor_addr_to_str(addrbuf_prev, prev, sizeof(addrbuf_prev), 1) == NULL)
  2432. strlcpy(addrbuf_prev, "???", TOR_ADDR_BUF_LEN);
  2433. if (tor_addr_to_str(addrbuf_cur, cur, sizeof(addrbuf_cur), 1) == NULL)
  2434. strlcpy(addrbuf_cur, "???", TOR_ADDR_BUF_LEN);
  2435. if (!tor_addr_is_null(prev))
  2436. log_fn(severity, LD_GENERAL,
  2437. "Our IP Address has changed from %s to %s; "
  2438. "rebuilding descriptor (source: %s).",
  2439. addrbuf_prev, addrbuf_cur, source);
  2440. else
  2441. log_notice(LD_GENERAL,
  2442. "Guessed our IP address as %s (source: %s).",
  2443. addrbuf_cur, source);
  2444. }
  2445. /** Check whether our own address as defined by the Address configuration
  2446. * has changed. This is for routers that get their address from a service
  2447. * like dyndns. If our address has changed, mark our descriptor dirty. */
  2448. void
  2449. check_descriptor_ipaddress_changed(time_t now)
  2450. {
  2451. uint32_t prev, cur;
  2452. const or_options_t *options = get_options();
  2453. const char *method = NULL;
  2454. char *hostname = NULL;
  2455. (void) now;
  2456. if (router_get_my_routerinfo() == NULL)
  2457. return;
  2458. /* XXXX ipv6 */
  2459. prev = router_get_my_routerinfo()->addr;
  2460. if (resolve_my_address(LOG_INFO, options, &cur, &method, &hostname) < 0) {
  2461. log_info(LD_CONFIG,"options->Address didn't resolve into an IP.");
  2462. return;
  2463. }
  2464. if (prev != cur) {
  2465. char *source;
  2466. tor_addr_t tmp_prev, tmp_cur;
  2467. tor_addr_from_ipv4h(&tmp_prev, prev);
  2468. tor_addr_from_ipv4h(&tmp_cur, cur);
  2469. tor_asprintf(&source, "METHOD=%s%s%s", method,
  2470. hostname ? " HOSTNAME=" : "",
  2471. hostname ? hostname : "");
  2472. log_addr_has_changed(LOG_NOTICE, &tmp_prev, &tmp_cur, source);
  2473. tor_free(source);
  2474. ip_address_changed(0);
  2475. }
  2476. tor_free(hostname);
  2477. }
  2478. /** The most recently guessed value of our IP address, based on directory
  2479. * headers. */
  2480. static tor_addr_t last_guessed_ip = TOR_ADDR_NULL;
  2481. /** A directory server <b>d_conn</b> told us our IP address is
  2482. * <b>suggestion</b>.
  2483. * If this address is different from the one we think we are now, and
  2484. * if our computer doesn't actually know its IP address, then switch. */
  2485. void
  2486. router_new_address_suggestion(const char *suggestion,
  2487. const dir_connection_t *d_conn)
  2488. {
  2489. tor_addr_t addr;
  2490. uint32_t cur = 0; /* Current IPv4 address. */
  2491. const or_options_t *options = get_options();
  2492. /* first, learn what the IP address actually is */
  2493. if (tor_addr_parse(&addr, suggestion) == -1) {
  2494. log_debug(LD_DIR, "Malformed X-Your-Address-Is header %s. Ignoring.",
  2495. escaped(suggestion));
  2496. return;
  2497. }
  2498. log_debug(LD_DIR, "Got X-Your-Address-Is: %s.", suggestion);
  2499. if (!server_mode(options)) {
  2500. tor_addr_copy(&last_guessed_ip, &addr);
  2501. return;
  2502. }
  2503. /* XXXX ipv6 */
  2504. cur = get_last_resolved_addr();
  2505. if (cur ||
  2506. resolve_my_address(LOG_INFO, options, &cur, NULL, NULL) >= 0) {
  2507. /* We're all set -- we already know our address. Great. */
  2508. tor_addr_from_ipv4h(&last_guessed_ip, cur); /* store it in case we
  2509. need it later */
  2510. return;
  2511. }
  2512. if (tor_addr_is_internal(&addr, 0)) {
  2513. /* Don't believe anybody who says our IP is, say, 127.0.0.1. */
  2514. return;
  2515. }
  2516. if (tor_addr_eq(&d_conn->base_.addr, &addr)) {
  2517. /* Don't believe anybody who says our IP is their IP. */
  2518. log_debug(LD_DIR, "A directory server told us our IP address is %s, "
  2519. "but they are just reporting their own IP address. Ignoring.",
  2520. suggestion);
  2521. return;
  2522. }
  2523. /* Okay. We can't resolve our own address, and X-Your-Address-Is is giving
  2524. * us an answer different from what we had the last time we managed to
  2525. * resolve it. */
  2526. if (!tor_addr_eq(&last_guessed_ip, &addr)) {
  2527. control_event_server_status(LOG_NOTICE,
  2528. "EXTERNAL_ADDRESS ADDRESS=%s METHOD=DIRSERV",
  2529. suggestion);
  2530. log_addr_has_changed(LOG_NOTICE, &last_guessed_ip, &addr,
  2531. d_conn->base_.address);
  2532. ip_address_changed(0);
  2533. tor_addr_copy(&last_guessed_ip, &addr); /* router_rebuild_descriptor()
  2534. will fetch it */
  2535. }
  2536. }
  2537. /** We failed to resolve our address locally, but we'd like to build
  2538. * a descriptor and publish / test reachability. If we have a guess
  2539. * about our address based on directory headers, answer it and return
  2540. * 0; else return -1. */
  2541. static int
  2542. router_guess_address_from_dir_headers(uint32_t *guess)
  2543. {
  2544. if (!tor_addr_is_null(&last_guessed_ip)) {
  2545. *guess = tor_addr_to_ipv4h(&last_guessed_ip);
  2546. return 0;
  2547. }
  2548. return -1;
  2549. }
  2550. /** Set <b>platform</b> (max length <b>len</b>) to a NUL-terminated short
  2551. * string describing the version of Tor and the operating system we're
  2552. * currently running on.
  2553. */
  2554. STATIC void
  2555. get_platform_str(char *platform, size_t len)
  2556. {
  2557. tor_snprintf(platform, len, "Tor %s on %s",
  2558. get_short_version(), get_uname());
  2559. }
  2560. /* XXX need to audit this thing and count fenceposts. maybe
  2561. * refactor so we don't have to keep asking if we're
  2562. * near the end of maxlen?
  2563. */
  2564. #define DEBUG_ROUTER_DUMP_ROUTER_TO_STRING
  2565. /** OR only: Given a routerinfo for this router, and an identity key to sign
  2566. * with, encode the routerinfo as a signed server descriptor and return a new
  2567. * string encoding the result, or NULL on failure.
  2568. */
  2569. char *
  2570. router_dump_router_to_string(routerinfo_t *router,
  2571. const crypto_pk_t *ident_key,
  2572. const crypto_pk_t *tap_key,
  2573. const curve25519_keypair_t *ntor_keypair,
  2574. const ed25519_keypair_t *signing_keypair)
  2575. {
  2576. char *address = NULL;
  2577. char *onion_pkey = NULL; /* Onion key, PEM-encoded. */
  2578. char *identity_pkey = NULL; /* Identity key, PEM-encoded. */
  2579. char digest[DIGEST256_LEN];
  2580. char published[ISO_TIME_LEN+1];
  2581. char fingerprint[FINGERPRINT_LEN+1];
  2582. char *extra_info_line = NULL;
  2583. size_t onion_pkeylen, identity_pkeylen;
  2584. char *family_line = NULL;
  2585. char *extra_or_address = NULL;
  2586. const or_options_t *options = get_options();
  2587. smartlist_t *chunks = NULL;
  2588. char *output = NULL;
  2589. const int emit_ed_sigs = signing_keypair &&
  2590. router->cache_info.signing_key_cert;
  2591. char *ed_cert_line = NULL;
  2592. char *rsa_tap_cc_line = NULL;
  2593. char *ntor_cc_line = NULL;
  2594. char *proto_line = NULL;
  2595. /* Make sure the identity key matches the one in the routerinfo. */
  2596. if (!crypto_pk_eq_keys(ident_key, router->identity_pkey)) {
  2597. log_warn(LD_BUG,"Tried to sign a router with a private key that didn't "
  2598. "match router's public key!");
  2599. goto err;
  2600. }
  2601. if (emit_ed_sigs) {
  2602. if (!router->cache_info.signing_key_cert->signing_key_included ||
  2603. !ed25519_pubkey_eq(&router->cache_info.signing_key_cert->signed_key,
  2604. &signing_keypair->pubkey)) {
  2605. log_warn(LD_BUG, "Tried to sign a router descriptor with a mismatched "
  2606. "ed25519 key chain %d",
  2607. router->cache_info.signing_key_cert->signing_key_included);
  2608. goto err;
  2609. }
  2610. }
  2611. /* record our fingerprint, so we can include it in the descriptor */
  2612. if (crypto_pk_get_fingerprint(router->identity_pkey, fingerprint, 1)<0) {
  2613. log_err(LD_BUG,"Error computing fingerprint");
  2614. goto err;
  2615. }
  2616. if (emit_ed_sigs) {
  2617. /* Encode ed25519 signing cert */
  2618. char ed_cert_base64[256];
  2619. char ed_fp_base64[ED25519_BASE64_LEN+1];
  2620. if (base64_encode(ed_cert_base64, sizeof(ed_cert_base64),
  2621. (const char*)router->cache_info.signing_key_cert->encoded,
  2622. router->cache_info.signing_key_cert->encoded_len,
  2623. BASE64_ENCODE_MULTILINE) < 0) {
  2624. log_err(LD_BUG,"Couldn't base64-encode signing key certificate!");
  2625. goto err;
  2626. }
  2627. if (ed25519_public_to_base64(ed_fp_base64,
  2628. &router->cache_info.signing_key_cert->signing_key)<0) {
  2629. log_err(LD_BUG,"Couldn't base64-encode identity key\n");
  2630. goto err;
  2631. }
  2632. tor_asprintf(&ed_cert_line, "identity-ed25519\n"
  2633. "-----BEGIN ED25519 CERT-----\n"
  2634. "%s"
  2635. "-----END ED25519 CERT-----\n"
  2636. "master-key-ed25519 %s\n",
  2637. ed_cert_base64, ed_fp_base64);
  2638. }
  2639. /* PEM-encode the onion key */
  2640. if (crypto_pk_write_public_key_to_string(router->onion_pkey,
  2641. &onion_pkey,&onion_pkeylen)<0) {
  2642. log_warn(LD_BUG,"write onion_pkey to string failed!");
  2643. goto err;
  2644. }
  2645. /* PEM-encode the identity key */
  2646. if (crypto_pk_write_public_key_to_string(router->identity_pkey,
  2647. &identity_pkey,&identity_pkeylen)<0) {
  2648. log_warn(LD_BUG,"write identity_pkey to string failed!");
  2649. goto err;
  2650. }
  2651. /* Cross-certify with RSA key */
  2652. if (tap_key && router->cache_info.signing_key_cert &&
  2653. router->cache_info.signing_key_cert->signing_key_included) {
  2654. char buf[256];
  2655. int tap_cc_len = 0;
  2656. uint8_t *tap_cc =
  2657. make_tap_onion_key_crosscert(tap_key,
  2658. &router->cache_info.signing_key_cert->signing_key,
  2659. router->identity_pkey,
  2660. &tap_cc_len);
  2661. if (!tap_cc) {
  2662. log_warn(LD_BUG,"make_tap_onion_key_crosscert failed!");
  2663. goto err;
  2664. }
  2665. if (base64_encode(buf, sizeof(buf), (const char*)tap_cc, tap_cc_len,
  2666. BASE64_ENCODE_MULTILINE) < 0) {
  2667. log_warn(LD_BUG,"base64_encode(rsa_crosscert) failed!");
  2668. tor_free(tap_cc);
  2669. goto err;
  2670. }
  2671. tor_free(tap_cc);
  2672. tor_asprintf(&rsa_tap_cc_line,
  2673. "onion-key-crosscert\n"
  2674. "-----BEGIN CROSSCERT-----\n"
  2675. "%s"
  2676. "-----END CROSSCERT-----\n", buf);
  2677. }
  2678. /* Cross-certify with onion keys */
  2679. if (ntor_keypair && router->cache_info.signing_key_cert &&
  2680. router->cache_info.signing_key_cert->signing_key_included) {
  2681. int sign = 0;
  2682. char buf[256];
  2683. /* XXXX Base the expiration date on the actual onion key expiration time?*/
  2684. tor_cert_t *cert =
  2685. make_ntor_onion_key_crosscert(ntor_keypair,
  2686. &router->cache_info.signing_key_cert->signing_key,
  2687. router->cache_info.published_on,
  2688. get_onion_key_lifetime(), &sign);
  2689. if (!cert) {
  2690. log_warn(LD_BUG,"make_ntor_onion_key_crosscert failed!");
  2691. goto err;
  2692. }
  2693. tor_assert(sign == 0 || sign == 1);
  2694. if (base64_encode(buf, sizeof(buf),
  2695. (const char*)cert->encoded, cert->encoded_len,
  2696. BASE64_ENCODE_MULTILINE)<0) {
  2697. log_warn(LD_BUG,"base64_encode(ntor_crosscert) failed!");
  2698. tor_cert_free(cert);
  2699. goto err;
  2700. }
  2701. tor_cert_free(cert);
  2702. tor_asprintf(&ntor_cc_line,
  2703. "ntor-onion-key-crosscert %d\n"
  2704. "-----BEGIN ED25519 CERT-----\n"
  2705. "%s"
  2706. "-----END ED25519 CERT-----\n", sign, buf);
  2707. }
  2708. /* Encode the publication time. */
  2709. format_iso_time(published, router->cache_info.published_on);
  2710. if (router->declared_family && smartlist_len(router->declared_family)) {
  2711. char *family = smartlist_join_strings(router->declared_family,
  2712. " ", 0, NULL);
  2713. tor_asprintf(&family_line, "family %s\n", family);
  2714. tor_free(family);
  2715. } else {
  2716. family_line = tor_strdup("");
  2717. }
  2718. if (!tor_digest_is_zero(router->cache_info.extra_info_digest)) {
  2719. char extra_info_digest[HEX_DIGEST_LEN+1];
  2720. base16_encode(extra_info_digest, sizeof(extra_info_digest),
  2721. router->cache_info.extra_info_digest, DIGEST_LEN);
  2722. if (!tor_digest256_is_zero(router->cache_info.extra_info_digest256)) {
  2723. char d256_64[BASE64_DIGEST256_LEN+1];
  2724. digest256_to_base64(d256_64, router->cache_info.extra_info_digest256);
  2725. tor_asprintf(&extra_info_line, "extra-info-digest %s %s\n",
  2726. extra_info_digest, d256_64);
  2727. } else {
  2728. tor_asprintf(&extra_info_line, "extra-info-digest %s\n",
  2729. extra_info_digest);
  2730. }
  2731. }
  2732. if (router->ipv6_orport &&
  2733. tor_addr_family(&router->ipv6_addr) == AF_INET6) {
  2734. char addr[TOR_ADDR_BUF_LEN];
  2735. const char *a;
  2736. a = tor_addr_to_str(addr, &router->ipv6_addr, sizeof(addr), 1);
  2737. if (a) {
  2738. tor_asprintf(&extra_or_address,
  2739. "or-address %s:%d\n", a, router->ipv6_orport);
  2740. log_debug(LD_OR, "My or-address line is <%s>", extra_or_address);
  2741. }
  2742. }
  2743. if (router->protocol_list) {
  2744. tor_asprintf(&proto_line, "proto %s\n", router->protocol_list);
  2745. } else {
  2746. proto_line = tor_strdup("");
  2747. }
  2748. address = tor_dup_ip(router->addr);
  2749. chunks = smartlist_new();
  2750. /* Generate the easy portion of the router descriptor. */
  2751. smartlist_add_asprintf(chunks,
  2752. "router %s %s %d 0 %d\n"
  2753. "%s"
  2754. "%s"
  2755. "platform %s\n"
  2756. "%s"
  2757. "published %s\n"
  2758. "fingerprint %s\n"
  2759. "uptime %ld\n"
  2760. "bandwidth %d %d %d\n"
  2761. "%s%s"
  2762. "onion-key\n%s"
  2763. "signing-key\n%s"
  2764. "%s%s"
  2765. "%s%s%s",
  2766. router->nickname,
  2767. address,
  2768. router->or_port,
  2769. router_should_advertise_dirport(options, router->dir_port),
  2770. ed_cert_line ? ed_cert_line : "",
  2771. extra_or_address ? extra_or_address : "",
  2772. router->platform,
  2773. proto_line,
  2774. published,
  2775. fingerprint,
  2776. get_uptime(),
  2777. (int) router->bandwidthrate,
  2778. (int) router->bandwidthburst,
  2779. (int) router->bandwidthcapacity,
  2780. extra_info_line ? extra_info_line : "",
  2781. (options->DownloadExtraInfo || options->V3AuthoritativeDir) ?
  2782. "caches-extra-info\n" : "",
  2783. onion_pkey, identity_pkey,
  2784. rsa_tap_cc_line ? rsa_tap_cc_line : "",
  2785. ntor_cc_line ? ntor_cc_line : "",
  2786. family_line,
  2787. we_are_hibernating() ? "hibernating 1\n" : "",
  2788. "hidden-service-dir\n");
  2789. if (options->ContactInfo && strlen(options->ContactInfo)) {
  2790. const char *ci = options->ContactInfo;
  2791. if (strchr(ci, '\n') || strchr(ci, '\r'))
  2792. ci = escaped(ci);
  2793. smartlist_add_asprintf(chunks, "contact %s\n", ci);
  2794. }
  2795. if (options->BridgeRelay) {
  2796. const char *bd;
  2797. if (options->BridgeDistribution && strlen(options->BridgeDistribution)) {
  2798. bd = options->BridgeDistribution;
  2799. } else {
  2800. bd = "any";
  2801. }
  2802. if (strchr(bd, '\n') || strchr(bd, '\r'))
  2803. bd = escaped(bd);
  2804. smartlist_add_asprintf(chunks, "bridge-distribution-request %s\n", bd);
  2805. }
  2806. if (router->onion_curve25519_pkey) {
  2807. char kbuf[128];
  2808. base64_encode(kbuf, sizeof(kbuf),
  2809. (const char *)router->onion_curve25519_pkey->public_key,
  2810. CURVE25519_PUBKEY_LEN, BASE64_ENCODE_MULTILINE);
  2811. smartlist_add_asprintf(chunks, "ntor-onion-key %s", kbuf);
  2812. } else {
  2813. /* Authorities will start rejecting relays without ntor keys in 0.2.9 */
  2814. log_err(LD_BUG, "A relay must have an ntor onion key");
  2815. goto err;
  2816. }
  2817. /* Write the exit policy to the end of 's'. */
  2818. if (!router->exit_policy || !smartlist_len(router->exit_policy)) {
  2819. smartlist_add_strdup(chunks, "reject *:*\n");
  2820. } else if (router->exit_policy) {
  2821. char *exit_policy = router_dump_exit_policy_to_string(router,1,0);
  2822. if (!exit_policy)
  2823. goto err;
  2824. smartlist_add_asprintf(chunks, "%s\n", exit_policy);
  2825. tor_free(exit_policy);
  2826. }
  2827. if (router->ipv6_exit_policy) {
  2828. char *p6 = write_short_policy(router->ipv6_exit_policy);
  2829. if (p6 && strcmp(p6, "reject 1-65535")) {
  2830. smartlist_add_asprintf(chunks,
  2831. "ipv6-policy %s\n", p6);
  2832. }
  2833. tor_free(p6);
  2834. }
  2835. if (router_should_advertise_begindir(options,
  2836. router->supports_tunnelled_dir_requests)) {
  2837. smartlist_add_strdup(chunks, "tunnelled-dir-server\n");
  2838. }
  2839. /* Sign the descriptor with Ed25519 */
  2840. if (emit_ed_sigs) {
  2841. smartlist_add_strdup(chunks, "router-sig-ed25519 ");
  2842. crypto_digest_smartlist_prefix(digest, DIGEST256_LEN,
  2843. ED_DESC_SIGNATURE_PREFIX,
  2844. chunks, "", DIGEST_SHA256);
  2845. ed25519_signature_t sig;
  2846. char buf[ED25519_SIG_BASE64_LEN+1];
  2847. if (ed25519_sign(&sig, (const uint8_t*)digest, DIGEST256_LEN,
  2848. signing_keypair) < 0)
  2849. goto err;
  2850. if (ed25519_signature_to_base64(buf, &sig) < 0)
  2851. goto err;
  2852. smartlist_add_asprintf(chunks, "%s\n", buf);
  2853. }
  2854. /* Sign the descriptor with RSA */
  2855. smartlist_add_strdup(chunks, "router-signature\n");
  2856. crypto_digest_smartlist(digest, DIGEST_LEN, chunks, "", DIGEST_SHA1);
  2857. {
  2858. char *sig;
  2859. if (!(sig = router_get_dirobj_signature(digest, DIGEST_LEN, ident_key))) {
  2860. log_warn(LD_BUG, "Couldn't sign router descriptor");
  2861. goto err;
  2862. }
  2863. smartlist_add(chunks, sig);
  2864. }
  2865. /* include a last '\n' */
  2866. smartlist_add_strdup(chunks, "\n");
  2867. output = smartlist_join_strings(chunks, "", 0, NULL);
  2868. #ifdef DEBUG_ROUTER_DUMP_ROUTER_TO_STRING
  2869. {
  2870. char *s_dup;
  2871. const char *cp;
  2872. routerinfo_t *ri_tmp;
  2873. cp = s_dup = tor_strdup(output);
  2874. ri_tmp = router_parse_entry_from_string(cp, NULL, 1, 0, NULL, NULL);
  2875. if (!ri_tmp) {
  2876. log_err(LD_BUG,
  2877. "We just generated a router descriptor we can't parse.");
  2878. log_err(LD_BUG, "Descriptor was: <<%s>>", output);
  2879. goto err;
  2880. }
  2881. tor_free(s_dup);
  2882. routerinfo_free(ri_tmp);
  2883. }
  2884. #endif /* defined(DEBUG_ROUTER_DUMP_ROUTER_TO_STRING) */
  2885. goto done;
  2886. err:
  2887. tor_free(output); /* sets output to NULL */
  2888. done:
  2889. if (chunks) {
  2890. SMARTLIST_FOREACH(chunks, char *, cp, tor_free(cp));
  2891. smartlist_free(chunks);
  2892. }
  2893. tor_free(address);
  2894. tor_free(family_line);
  2895. tor_free(onion_pkey);
  2896. tor_free(identity_pkey);
  2897. tor_free(extra_or_address);
  2898. tor_free(ed_cert_line);
  2899. tor_free(rsa_tap_cc_line);
  2900. tor_free(ntor_cc_line);
  2901. tor_free(extra_info_line);
  2902. tor_free(proto_line);
  2903. return output;
  2904. }
  2905. /**
  2906. * OR only: Given <b>router</b>, produce a string with its exit policy.
  2907. * If <b>include_ipv4</b> is true, include IPv4 entries.
  2908. * If <b>include_ipv6</b> is true, include IPv6 entries.
  2909. */
  2910. char *
  2911. router_dump_exit_policy_to_string(const routerinfo_t *router,
  2912. int include_ipv4,
  2913. int include_ipv6)
  2914. {
  2915. if ((!router->exit_policy) || (router->policy_is_reject_star)) {
  2916. return tor_strdup("reject *:*");
  2917. }
  2918. return policy_dump_to_string(router->exit_policy,
  2919. include_ipv4,
  2920. include_ipv6);
  2921. }
  2922. /** Copy the primary (IPv4) OR port (IP address and TCP port) for
  2923. * <b>router</b> into *<b>ap_out</b>. */
  2924. void
  2925. router_get_prim_orport(const routerinfo_t *router, tor_addr_port_t *ap_out)
  2926. {
  2927. tor_assert(ap_out != NULL);
  2928. tor_addr_from_ipv4h(&ap_out->addr, router->addr);
  2929. ap_out->port = router->or_port;
  2930. }
  2931. /** Return 1 if any of <b>router</b>'s addresses are <b>addr</b>.
  2932. * Otherwise return 0. */
  2933. int
  2934. router_has_addr(const routerinfo_t *router, const tor_addr_t *addr)
  2935. {
  2936. return
  2937. tor_addr_eq_ipv4h(addr, router->addr) ||
  2938. tor_addr_eq(&router->ipv6_addr, addr);
  2939. }
  2940. int
  2941. router_has_orport(const routerinfo_t *router, const tor_addr_port_t *orport)
  2942. {
  2943. return
  2944. (tor_addr_eq_ipv4h(&orport->addr, router->addr) &&
  2945. orport->port == router->or_port) ||
  2946. (tor_addr_eq(&orport->addr, &router->ipv6_addr) &&
  2947. orport->port == router->ipv6_orport);
  2948. }
  2949. /** Load the contents of <b>filename</b>, find the last line starting with
  2950. * <b>end_line</b>, ensure that its timestamp is not more than 25 hours in
  2951. * the past or more than 1 hour in the future with respect to <b>now</b>,
  2952. * and write the file contents starting with that line to *<b>out</b>.
  2953. * Return 1 for success, 0 if the file does not exist or is empty, or -1
  2954. * if the file does not contain a line matching these criteria or other
  2955. * failure. */
  2956. static int
  2957. load_stats_file(const char *filename, const char *end_line, time_t now,
  2958. char **out)
  2959. {
  2960. int r = -1;
  2961. char *fname = get_datadir_fname(filename);
  2962. char *contents, *start = NULL, *tmp, timestr[ISO_TIME_LEN+1];
  2963. time_t written;
  2964. switch (file_status(fname)) {
  2965. case FN_FILE:
  2966. /* X022 Find an alternative to reading the whole file to memory. */
  2967. if ((contents = read_file_to_str(fname, 0, NULL))) {
  2968. tmp = strstr(contents, end_line);
  2969. /* Find last block starting with end_line */
  2970. while (tmp) {
  2971. start = tmp;
  2972. tmp = strstr(tmp + 1, end_line);
  2973. }
  2974. if (!start)
  2975. goto notfound;
  2976. if (strlen(start) < strlen(end_line) + 1 + sizeof(timestr))
  2977. goto notfound;
  2978. strlcpy(timestr, start + 1 + strlen(end_line), sizeof(timestr));
  2979. if (parse_iso_time(timestr, &written) < 0)
  2980. goto notfound;
  2981. if (written < now - (25*60*60) || written > now + (1*60*60))
  2982. goto notfound;
  2983. *out = tor_strdup(start);
  2984. r = 1;
  2985. }
  2986. notfound:
  2987. tor_free(contents);
  2988. break;
  2989. /* treat empty stats files as if the file doesn't exist */
  2990. case FN_NOENT:
  2991. case FN_EMPTY:
  2992. r = 0;
  2993. break;
  2994. case FN_ERROR:
  2995. case FN_DIR:
  2996. default:
  2997. break;
  2998. }
  2999. tor_free(fname);
  3000. return r;
  3001. }
  3002. /** Write the contents of <b>extrainfo</b> and aggregated statistics to
  3003. * *<b>s_out</b>, signing them with <b>ident_key</b>. Return 0 on
  3004. * success, negative on failure. */
  3005. int
  3006. extrainfo_dump_to_string(char **s_out, extrainfo_t *extrainfo,
  3007. crypto_pk_t *ident_key,
  3008. const ed25519_keypair_t *signing_keypair)
  3009. {
  3010. const or_options_t *options = get_options();
  3011. char identity[HEX_DIGEST_LEN+1];
  3012. char published[ISO_TIME_LEN+1];
  3013. char digest[DIGEST_LEN];
  3014. char *bandwidth_usage;
  3015. int result;
  3016. static int write_stats_to_extrainfo = 1;
  3017. char sig[DIROBJ_MAX_SIG_LEN+1];
  3018. char *s = NULL, *pre, *contents, *cp, *s_dup = NULL;
  3019. time_t now = time(NULL);
  3020. smartlist_t *chunks = smartlist_new();
  3021. extrainfo_t *ei_tmp = NULL;
  3022. const int emit_ed_sigs = signing_keypair &&
  3023. extrainfo->cache_info.signing_key_cert;
  3024. char *ed_cert_line = NULL;
  3025. base16_encode(identity, sizeof(identity),
  3026. extrainfo->cache_info.identity_digest, DIGEST_LEN);
  3027. format_iso_time(published, extrainfo->cache_info.published_on);
  3028. bandwidth_usage = rep_hist_get_bandwidth_lines();
  3029. if (emit_ed_sigs) {
  3030. if (!extrainfo->cache_info.signing_key_cert->signing_key_included ||
  3031. !ed25519_pubkey_eq(&extrainfo->cache_info.signing_key_cert->signed_key,
  3032. &signing_keypair->pubkey)) {
  3033. log_warn(LD_BUG, "Tried to sign a extrainfo descriptor with a "
  3034. "mismatched ed25519 key chain %d",
  3035. extrainfo->cache_info.signing_key_cert->signing_key_included);
  3036. goto err;
  3037. }
  3038. char ed_cert_base64[256];
  3039. if (base64_encode(ed_cert_base64, sizeof(ed_cert_base64),
  3040. (const char*)extrainfo->cache_info.signing_key_cert->encoded,
  3041. extrainfo->cache_info.signing_key_cert->encoded_len,
  3042. BASE64_ENCODE_MULTILINE) < 0) {
  3043. log_err(LD_BUG,"Couldn't base64-encode signing key certificate!");
  3044. goto err;
  3045. }
  3046. tor_asprintf(&ed_cert_line, "identity-ed25519\n"
  3047. "-----BEGIN ED25519 CERT-----\n"
  3048. "%s"
  3049. "-----END ED25519 CERT-----\n", ed_cert_base64);
  3050. } else {
  3051. ed_cert_line = tor_strdup("");
  3052. }
  3053. tor_asprintf(&pre, "extra-info %s %s\n%spublished %s\n%s",
  3054. extrainfo->nickname, identity,
  3055. ed_cert_line,
  3056. published, bandwidth_usage);
  3057. smartlist_add(chunks, pre);
  3058. if (geoip_is_loaded(AF_INET))
  3059. smartlist_add_asprintf(chunks, "geoip-db-digest %s\n",
  3060. geoip_db_digest(AF_INET));
  3061. if (geoip_is_loaded(AF_INET6))
  3062. smartlist_add_asprintf(chunks, "geoip6-db-digest %s\n",
  3063. geoip_db_digest(AF_INET6));
  3064. if (options->ExtraInfoStatistics && write_stats_to_extrainfo) {
  3065. log_info(LD_GENERAL, "Adding stats to extra-info descriptor.");
  3066. if (options->DirReqStatistics &&
  3067. load_stats_file("stats"PATH_SEPARATOR"dirreq-stats",
  3068. "dirreq-stats-end", now, &contents) > 0) {
  3069. smartlist_add(chunks, contents);
  3070. }
  3071. if (options->HiddenServiceStatistics &&
  3072. load_stats_file("stats"PATH_SEPARATOR"hidserv-stats",
  3073. "hidserv-stats-end", now, &contents) > 0) {
  3074. smartlist_add(chunks, contents);
  3075. }
  3076. if (options->EntryStatistics &&
  3077. load_stats_file("stats"PATH_SEPARATOR"entry-stats",
  3078. "entry-stats-end", now, &contents) > 0) {
  3079. smartlist_add(chunks, contents);
  3080. }
  3081. if (options->CellStatistics &&
  3082. load_stats_file("stats"PATH_SEPARATOR"buffer-stats",
  3083. "cell-stats-end", now, &contents) > 0) {
  3084. smartlist_add(chunks, contents);
  3085. }
  3086. if (options->ExitPortStatistics &&
  3087. load_stats_file("stats"PATH_SEPARATOR"exit-stats",
  3088. "exit-stats-end", now, &contents) > 0) {
  3089. smartlist_add(chunks, contents);
  3090. }
  3091. if (options->ConnDirectionStatistics &&
  3092. load_stats_file("stats"PATH_SEPARATOR"conn-stats",
  3093. "conn-bi-direct", now, &contents) > 0) {
  3094. smartlist_add(chunks, contents);
  3095. }
  3096. }
  3097. if (options->PaddingStatistics) {
  3098. contents = rep_hist_get_padding_count_lines();
  3099. if (contents)
  3100. smartlist_add(chunks, contents);
  3101. }
  3102. /* Add information about the pluggable transports we support. */
  3103. if (options->ServerTransportPlugin) {
  3104. char *pluggable_transports = pt_get_extra_info_descriptor_string();
  3105. if (pluggable_transports)
  3106. smartlist_add(chunks, pluggable_transports);
  3107. }
  3108. if (should_record_bridge_info(options) && write_stats_to_extrainfo) {
  3109. const char *bridge_stats = geoip_get_bridge_stats_extrainfo(now);
  3110. if (bridge_stats) {
  3111. smartlist_add_strdup(chunks, bridge_stats);
  3112. }
  3113. }
  3114. if (emit_ed_sigs) {
  3115. char sha256_digest[DIGEST256_LEN];
  3116. smartlist_add_strdup(chunks, "router-sig-ed25519 ");
  3117. crypto_digest_smartlist_prefix(sha256_digest, DIGEST256_LEN,
  3118. ED_DESC_SIGNATURE_PREFIX,
  3119. chunks, "", DIGEST_SHA256);
  3120. ed25519_signature_t ed_sig;
  3121. char buf[ED25519_SIG_BASE64_LEN+1];
  3122. if (ed25519_sign(&ed_sig, (const uint8_t*)sha256_digest, DIGEST256_LEN,
  3123. signing_keypair) < 0)
  3124. goto err;
  3125. if (ed25519_signature_to_base64(buf, &ed_sig) < 0)
  3126. goto err;
  3127. smartlist_add_asprintf(chunks, "%s\n", buf);
  3128. }
  3129. smartlist_add_strdup(chunks, "router-signature\n");
  3130. s = smartlist_join_strings(chunks, "", 0, NULL);
  3131. while (strlen(s) > MAX_EXTRAINFO_UPLOAD_SIZE - DIROBJ_MAX_SIG_LEN) {
  3132. /* So long as there are at least two chunks (one for the initial
  3133. * extra-info line and one for the router-signature), we can keep removing
  3134. * things. */
  3135. if (smartlist_len(chunks) > 2) {
  3136. /* We remove the next-to-last element (remember, len-1 is the last
  3137. element), since we need to keep the router-signature element. */
  3138. int idx = smartlist_len(chunks) - 2;
  3139. char *e = smartlist_get(chunks, idx);
  3140. smartlist_del_keeporder(chunks, idx);
  3141. log_warn(LD_GENERAL, "We just generated an extra-info descriptor "
  3142. "with statistics that exceeds the 50 KB "
  3143. "upload limit. Removing last added "
  3144. "statistics.");
  3145. tor_free(e);
  3146. tor_free(s);
  3147. s = smartlist_join_strings(chunks, "", 0, NULL);
  3148. } else {
  3149. log_warn(LD_BUG, "We just generated an extra-info descriptors that "
  3150. "exceeds the 50 KB upload limit.");
  3151. goto err;
  3152. }
  3153. }
  3154. memset(sig, 0, sizeof(sig));
  3155. if (router_get_extrainfo_hash(s, strlen(s), digest) < 0 ||
  3156. router_append_dirobj_signature(sig, sizeof(sig), digest, DIGEST_LEN,
  3157. ident_key) < 0) {
  3158. log_warn(LD_BUG, "Could not append signature to extra-info "
  3159. "descriptor.");
  3160. goto err;
  3161. }
  3162. smartlist_add_strdup(chunks, sig);
  3163. tor_free(s);
  3164. s = smartlist_join_strings(chunks, "", 0, NULL);
  3165. cp = s_dup = tor_strdup(s);
  3166. ei_tmp = extrainfo_parse_entry_from_string(cp, NULL, 1, NULL, NULL);
  3167. if (!ei_tmp) {
  3168. if (write_stats_to_extrainfo) {
  3169. log_warn(LD_GENERAL, "We just generated an extra-info descriptor "
  3170. "with statistics that we can't parse. Not "
  3171. "adding statistics to this or any future "
  3172. "extra-info descriptors.");
  3173. write_stats_to_extrainfo = 0;
  3174. result = extrainfo_dump_to_string(s_out, extrainfo, ident_key,
  3175. signing_keypair);
  3176. goto done;
  3177. } else {
  3178. log_warn(LD_BUG, "We just generated an extrainfo descriptor we "
  3179. "can't parse.");
  3180. goto err;
  3181. }
  3182. }
  3183. *s_out = s;
  3184. s = NULL; /* prevent free */
  3185. result = 0;
  3186. goto done;
  3187. err:
  3188. result = -1;
  3189. done:
  3190. tor_free(s);
  3191. SMARTLIST_FOREACH(chunks, char *, chunk, tor_free(chunk));
  3192. smartlist_free(chunks);
  3193. tor_free(s_dup);
  3194. tor_free(ed_cert_line);
  3195. extrainfo_free(ei_tmp);
  3196. tor_free(bandwidth_usage);
  3197. return result;
  3198. }
  3199. /** Return true iff <b>s</b> is a valid server nickname. (That is, a string
  3200. * containing between 1 and MAX_NICKNAME_LEN characters from
  3201. * LEGAL_NICKNAME_CHARACTERS.) */
  3202. int
  3203. is_legal_nickname(const char *s)
  3204. {
  3205. size_t len;
  3206. tor_assert(s);
  3207. len = strlen(s);
  3208. return len > 0 && len <= MAX_NICKNAME_LEN &&
  3209. strspn(s,LEGAL_NICKNAME_CHARACTERS) == len;
  3210. }
  3211. /** Return true iff <b>s</b> is a valid server nickname or
  3212. * hex-encoded identity-key digest. */
  3213. int
  3214. is_legal_nickname_or_hexdigest(const char *s)
  3215. {
  3216. if (*s!='$')
  3217. return is_legal_nickname(s);
  3218. else
  3219. return is_legal_hexdigest(s);
  3220. }
  3221. /** Return true iff <b>s</b> is a valid hex-encoded identity-key
  3222. * digest. (That is, an optional $, followed by 40 hex characters,
  3223. * followed by either nothing, or = or ~ followed by a nickname, or
  3224. * a character other than =, ~, or a hex character.)
  3225. */
  3226. int
  3227. is_legal_hexdigest(const char *s)
  3228. {
  3229. size_t len;
  3230. tor_assert(s);
  3231. if (s[0] == '$') s++;
  3232. len = strlen(s);
  3233. if (len > HEX_DIGEST_LEN) {
  3234. if (s[HEX_DIGEST_LEN] == '=' ||
  3235. s[HEX_DIGEST_LEN] == '~') {
  3236. if (!is_legal_nickname(s+HEX_DIGEST_LEN+1))
  3237. return 0;
  3238. } else {
  3239. return 0;
  3240. }
  3241. }
  3242. return (len >= HEX_DIGEST_LEN &&
  3243. strspn(s,HEX_CHARACTERS)==HEX_DIGEST_LEN);
  3244. }
  3245. /**
  3246. * Longest allowed output of format_node_description, plus 1 character for
  3247. * NUL. This allows space for:
  3248. * "$FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF~xxxxxxxxxxxxxxxxxxx at"
  3249. * " [ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255]"
  3250. * plus a terminating NUL.
  3251. */
  3252. #define NODE_DESC_BUF_LEN (MAX_VERBOSE_NICKNAME_LEN+4+TOR_ADDR_BUF_LEN)
  3253. /** Use <b>buf</b> (which must be at least NODE_DESC_BUF_LEN bytes long) to
  3254. * hold a human-readable description of a node with identity digest
  3255. * <b>id_digest</b>, named-status <b>is_named</b>, nickname <b>nickname</b>,
  3256. * and address <b>addr</b> or <b>addr32h</b>.
  3257. *
  3258. * The <b>nickname</b> and <b>addr</b> fields are optional and may be set to
  3259. * NULL. The <b>addr32h</b> field is optional and may be set to 0.
  3260. *
  3261. * Return a pointer to the front of <b>buf</b>.
  3262. */
  3263. const char *
  3264. format_node_description(char *buf,
  3265. const char *id_digest,
  3266. int is_named,
  3267. const char *nickname,
  3268. const tor_addr_t *addr,
  3269. uint32_t addr32h)
  3270. {
  3271. char *cp;
  3272. if (!buf)
  3273. return "<NULL BUFFER>";
  3274. buf[0] = '$';
  3275. base16_encode(buf+1, HEX_DIGEST_LEN+1, id_digest, DIGEST_LEN);
  3276. cp = buf+1+HEX_DIGEST_LEN;
  3277. if (nickname) {
  3278. buf[1+HEX_DIGEST_LEN] = is_named ? '=' : '~';
  3279. strlcpy(buf+1+HEX_DIGEST_LEN+1, nickname, MAX_NICKNAME_LEN+1);
  3280. cp += strlen(cp);
  3281. }
  3282. if (addr32h || addr) {
  3283. memcpy(cp, " at ", 4);
  3284. cp += 4;
  3285. if (addr) {
  3286. tor_addr_to_str(cp, addr, TOR_ADDR_BUF_LEN, 0);
  3287. } else {
  3288. struct in_addr in;
  3289. in.s_addr = htonl(addr32h);
  3290. tor_inet_ntoa(&in, cp, INET_NTOA_BUF_LEN);
  3291. }
  3292. }
  3293. return buf;
  3294. }
  3295. /** Return a human-readable description of the routerinfo_t <b>ri</b>.
  3296. *
  3297. * This function is not thread-safe. Each call to this function invalidates
  3298. * previous values returned by this function.
  3299. */
  3300. const char *
  3301. router_describe(const routerinfo_t *ri)
  3302. {
  3303. static char buf[NODE_DESC_BUF_LEN];
  3304. if (!ri)
  3305. return "<null>";
  3306. return format_node_description(buf,
  3307. ri->cache_info.identity_digest,
  3308. 0,
  3309. ri->nickname,
  3310. NULL,
  3311. ri->addr);
  3312. }
  3313. /** Return a human-readable description of the node_t <b>node</b>.
  3314. *
  3315. * This function is not thread-safe. Each call to this function invalidates
  3316. * previous values returned by this function.
  3317. */
  3318. const char *
  3319. node_describe(const node_t *node)
  3320. {
  3321. static char buf[NODE_DESC_BUF_LEN];
  3322. const char *nickname = NULL;
  3323. uint32_t addr32h = 0;
  3324. int is_named = 0;
  3325. if (!node)
  3326. return "<null>";
  3327. if (node->rs) {
  3328. nickname = node->rs->nickname;
  3329. is_named = node->rs->is_named;
  3330. addr32h = node->rs->addr;
  3331. } else if (node->ri) {
  3332. nickname = node->ri->nickname;
  3333. addr32h = node->ri->addr;
  3334. }
  3335. return format_node_description(buf,
  3336. node->identity,
  3337. is_named,
  3338. nickname,
  3339. NULL,
  3340. addr32h);
  3341. }
  3342. /** Return a human-readable description of the routerstatus_t <b>rs</b>.
  3343. *
  3344. * This function is not thread-safe. Each call to this function invalidates
  3345. * previous values returned by this function.
  3346. */
  3347. const char *
  3348. routerstatus_describe(const routerstatus_t *rs)
  3349. {
  3350. static char buf[NODE_DESC_BUF_LEN];
  3351. if (!rs)
  3352. return "<null>";
  3353. return format_node_description(buf,
  3354. rs->identity_digest,
  3355. rs->is_named,
  3356. rs->nickname,
  3357. NULL,
  3358. rs->addr);
  3359. }
  3360. /** Return a human-readable description of the extend_info_t <b>ei</b>.
  3361. *
  3362. * This function is not thread-safe. Each call to this function invalidates
  3363. * previous values returned by this function.
  3364. */
  3365. const char *
  3366. extend_info_describe(const extend_info_t *ei)
  3367. {
  3368. static char buf[NODE_DESC_BUF_LEN];
  3369. if (!ei)
  3370. return "<null>";
  3371. return format_node_description(buf,
  3372. ei->identity_digest,
  3373. 0,
  3374. ei->nickname,
  3375. &ei->addr,
  3376. 0);
  3377. }
  3378. /** Set <b>buf</b> (which must have MAX_VERBOSE_NICKNAME_LEN+1 bytes) to the
  3379. * verbose representation of the identity of <b>router</b>. The format is:
  3380. * A dollar sign.
  3381. * The upper-case hexadecimal encoding of the SHA1 hash of router's identity.
  3382. * A "=" if the router is named (no longer implemented); a "~" if it is not.
  3383. * The router's nickname.
  3384. **/
  3385. void
  3386. router_get_verbose_nickname(char *buf, const routerinfo_t *router)
  3387. {
  3388. buf[0] = '$';
  3389. base16_encode(buf+1, HEX_DIGEST_LEN+1, router->cache_info.identity_digest,
  3390. DIGEST_LEN);
  3391. buf[1+HEX_DIGEST_LEN] = '~';
  3392. strlcpy(buf+1+HEX_DIGEST_LEN+1, router->nickname, MAX_NICKNAME_LEN+1);
  3393. }
  3394. /** Forget that we have issued any router-related warnings, so that we'll
  3395. * warn again if we see the same errors. */
  3396. void
  3397. router_reset_warnings(void)
  3398. {
  3399. if (warned_nonexistent_family) {
  3400. SMARTLIST_FOREACH(warned_nonexistent_family, char *, cp, tor_free(cp));
  3401. smartlist_clear(warned_nonexistent_family);
  3402. }
  3403. }
  3404. /** Given a router purpose, convert it to a string. Don't call this on
  3405. * ROUTER_PURPOSE_UNKNOWN: The whole point of that value is that we don't
  3406. * know its string representation. */
  3407. const char *
  3408. router_purpose_to_string(uint8_t p)
  3409. {
  3410. switch (p)
  3411. {
  3412. case ROUTER_PURPOSE_GENERAL: return "general";
  3413. case ROUTER_PURPOSE_BRIDGE: return "bridge";
  3414. case ROUTER_PURPOSE_CONTROLLER: return "controller";
  3415. default:
  3416. tor_assert(0);
  3417. }
  3418. return NULL;
  3419. }
  3420. /** Given a string, convert it to a router purpose. */
  3421. uint8_t
  3422. router_purpose_from_string(const char *s)
  3423. {
  3424. if (!strcmp(s, "general"))
  3425. return ROUTER_PURPOSE_GENERAL;
  3426. else if (!strcmp(s, "bridge"))
  3427. return ROUTER_PURPOSE_BRIDGE;
  3428. else if (!strcmp(s, "controller"))
  3429. return ROUTER_PURPOSE_CONTROLLER;
  3430. else
  3431. return ROUTER_PURPOSE_UNKNOWN;
  3432. }
  3433. /** Release all static resources held in router.c */
  3434. void
  3435. router_free_all(void)
  3436. {
  3437. crypto_pk_free(onionkey);
  3438. crypto_pk_free(lastonionkey);
  3439. crypto_pk_free(server_identitykey);
  3440. crypto_pk_free(client_identitykey);
  3441. tor_mutex_free(key_lock);
  3442. routerinfo_free(desc_routerinfo);
  3443. extrainfo_free(desc_extrainfo);
  3444. crypto_pk_free(authority_signing_key);
  3445. authority_cert_free(authority_key_certificate);
  3446. crypto_pk_free(legacy_signing_key);
  3447. authority_cert_free(legacy_key_certificate);
  3448. memwipe(&curve25519_onion_key, 0, sizeof(curve25519_onion_key));
  3449. memwipe(&last_curve25519_onion_key, 0, sizeof(last_curve25519_onion_key));
  3450. if (warned_nonexistent_family) {
  3451. SMARTLIST_FOREACH(warned_nonexistent_family, char *, cp, tor_free(cp));
  3452. smartlist_free(warned_nonexistent_family);
  3453. }
  3454. }
  3455. /** Return a smartlist of tor_addr_port_t's with all the OR ports of
  3456. <b>ri</b>. Note that freeing of the items in the list as well as
  3457. the smartlist itself is the callers responsibility. */
  3458. smartlist_t *
  3459. router_get_all_orports(const routerinfo_t *ri)
  3460. {
  3461. tor_assert(ri);
  3462. node_t fake_node;
  3463. memset(&fake_node, 0, sizeof(fake_node));
  3464. /* we don't modify ri, fake_node is passed as a const node_t *
  3465. */
  3466. fake_node.ri = (routerinfo_t *)ri;
  3467. return node_get_all_orports(&fake_node);
  3468. }