router.c 123 KB

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