router.c 102 KB

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