router.c 121 KB

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