router.c 99 KB

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