router.c 120 KB

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