router.c 121 KB

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