router.c 123 KB

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