router.c 104 KB

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