router.c 120 KB

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