router.c 110 KB

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