router.c 101 KB

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