router.c 100 KB

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