router.c 127 KB

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