router.c 99 KB

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