router.c 97 KB

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