hs_service.c 128 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636
  1. /* Copyright (c) 2016-2018, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file hs_service.c
  5. * \brief Implement next generation hidden service functionality
  6. **/
  7. #define HS_SERVICE_PRIVATE
  8. #include "or/or.h"
  9. #include "or/circpathbias.h"
  10. #include "or/circuitbuild.h"
  11. #include "or/circuitlist.h"
  12. #include "or/circuituse.h"
  13. #include "or/config.h"
  14. #include "or/connection.h"
  15. #include "lib/crypt_ops/crypto_rand.h"
  16. #include "lib/crypt_ops/crypto_util.h"
  17. #include "or/directory.h"
  18. #include "or/main.h"
  19. #include "or/networkstatus.h"
  20. #include "or/nodelist.h"
  21. #include "or/relay.h"
  22. #include "or/rendservice.h"
  23. #include "or/router.h"
  24. #include "or/routerkeys.h"
  25. #include "or/routerlist.h"
  26. #include "or/shared_random_client.h"
  27. #include "or/statefile.h"
  28. #include "or/hs_circuit.h"
  29. #include "or/hs_common.h"
  30. #include "or/hs_config.h"
  31. #include "or/hs_control.h"
  32. #include "or/hs_descriptor.h"
  33. #include "or/hs_ident.h"
  34. #include "or/hs_intropoint.h"
  35. #include "or/hs_service.h"
  36. #include "or/hs_stats.h"
  37. #include "or/dir_connection_st.h"
  38. #include "or/edge_connection_st.h"
  39. #include "or/extend_info_st.h"
  40. #include "or/networkstatus_st.h"
  41. #include "or/node_st.h"
  42. #include "or/origin_circuit_st.h"
  43. #include "or/routerstatus_st.h"
  44. #include "lib/encoding/confline.h"
  45. #include "lib/crypt_ops/crypto_format.h"
  46. /* Trunnel */
  47. #include "trunnel/ed25519_cert.h"
  48. #include "trunnel/hs/cell_common.h"
  49. #include "trunnel/hs/cell_establish_intro.h"
  50. /* Helper macro. Iterate over every service in the global map. The var is the
  51. * name of the service pointer. */
  52. #define FOR_EACH_SERVICE_BEGIN(var) \
  53. STMT_BEGIN \
  54. hs_service_t **var##_iter, *var; \
  55. HT_FOREACH(var##_iter, hs_service_ht, hs_service_map) { \
  56. var = *var##_iter;
  57. #define FOR_EACH_SERVICE_END } STMT_END ;
  58. /* Helper macro. Iterate over both current and previous descriptor of a
  59. * service. The var is the name of the descriptor pointer. This macro skips
  60. * any descriptor object of the service that is NULL. */
  61. #define FOR_EACH_DESCRIPTOR_BEGIN(service, var) \
  62. STMT_BEGIN \
  63. hs_service_descriptor_t *var; \
  64. for (int var ## _loop_idx = 0; var ## _loop_idx < 2; \
  65. ++var ## _loop_idx) { \
  66. (var ## _loop_idx == 0) ? (var = service->desc_current) : \
  67. (var = service->desc_next); \
  68. if (var == NULL) continue;
  69. #define FOR_EACH_DESCRIPTOR_END } STMT_END ;
  70. /* Onion service directory file names. */
  71. static const char fname_keyfile_prefix[] = "hs_ed25519";
  72. static const char fname_hostname[] = "hostname";
  73. static const char address_tld[] = "onion";
  74. /* Staging list of service object. When configuring service, we add them to
  75. * this list considered a staging area and they will get added to our global
  76. * map once the keys have been loaded. These two steps are separated because
  77. * loading keys requires that we are an actual running tor process. */
  78. static smartlist_t *hs_service_staging_list;
  79. /** True if the list of available router descriptors might have changed which
  80. * might result in an altered hash ring. Check if the hash ring changed and
  81. * reupload if needed */
  82. static int consider_republishing_hs_descriptors = 0;
  83. /* Static declaration. */
  84. static void set_descriptor_revision_counter(hs_descriptor_t *hs_desc);
  85. static void move_descriptors(hs_service_t *src, hs_service_t *dst);
  86. /* Helper: Function to compare two objects in the service map. Return 1 if the
  87. * two service have the same master public identity key. */
  88. static inline int
  89. hs_service_ht_eq(const hs_service_t *first, const hs_service_t *second)
  90. {
  91. tor_assert(first);
  92. tor_assert(second);
  93. /* Simple key compare. */
  94. return ed25519_pubkey_eq(&first->keys.identity_pk,
  95. &second->keys.identity_pk);
  96. }
  97. /* Helper: Function for the service hash table code below. The key used is the
  98. * master public identity key which is ultimately the onion address. */
  99. static inline unsigned int
  100. hs_service_ht_hash(const hs_service_t *service)
  101. {
  102. tor_assert(service);
  103. return (unsigned int) siphash24g(service->keys.identity_pk.pubkey,
  104. sizeof(service->keys.identity_pk.pubkey));
  105. }
  106. /* This is _the_ global hash map of hidden services which indexed the service
  107. * contained in it by master public identity key which is roughly the onion
  108. * address of the service. */
  109. static struct hs_service_ht *hs_service_map;
  110. /* Register the service hash table. */
  111. HT_PROTOTYPE(hs_service_ht, /* Name of hashtable. */
  112. hs_service_t, /* Object contained in the map. */
  113. hs_service_node, /* The name of the HT_ENTRY member. */
  114. hs_service_ht_hash, /* Hashing function. */
  115. hs_service_ht_eq) /* Compare function for objects. */
  116. HT_GENERATE2(hs_service_ht, hs_service_t, hs_service_node,
  117. hs_service_ht_hash, hs_service_ht_eq,
  118. 0.6, tor_reallocarray, tor_free_)
  119. /* Query the given service map with a public key and return a service object
  120. * if found else NULL. It is also possible to set a directory path in the
  121. * search query. If pk is NULL, then it will be set to zero indicating the
  122. * hash table to compare the directory path instead. */
  123. STATIC hs_service_t *
  124. find_service(hs_service_ht *map, const ed25519_public_key_t *pk)
  125. {
  126. hs_service_t dummy_service;
  127. tor_assert(map);
  128. tor_assert(pk);
  129. memset(&dummy_service, 0, sizeof(dummy_service));
  130. ed25519_pubkey_copy(&dummy_service.keys.identity_pk, pk);
  131. return HT_FIND(hs_service_ht, map, &dummy_service);
  132. }
  133. /* Register the given service in the given map. If the service already exists
  134. * in the map, -1 is returned. On success, 0 is returned and the service
  135. * ownership has been transferred to the global map. */
  136. STATIC int
  137. register_service(hs_service_ht *map, hs_service_t *service)
  138. {
  139. tor_assert(map);
  140. tor_assert(service);
  141. tor_assert(!ed25519_public_key_is_zero(&service->keys.identity_pk));
  142. if (find_service(map, &service->keys.identity_pk)) {
  143. /* Existing service with the same key. Do not register it. */
  144. return -1;
  145. }
  146. /* Taking ownership of the object at this point. */
  147. HT_INSERT(hs_service_ht, map, service);
  148. /* If we just modified the global map, we notify. */
  149. if (map == hs_service_map) {
  150. hs_service_map_has_changed();
  151. }
  152. return 0;
  153. }
  154. /* Remove a given service from the given map. If service is NULL or the
  155. * service key is unset, return gracefully. */
  156. STATIC void
  157. remove_service(hs_service_ht *map, hs_service_t *service)
  158. {
  159. hs_service_t *elm;
  160. tor_assert(map);
  161. /* Ignore if no service or key is zero. */
  162. if (BUG(service == NULL) ||
  163. BUG(ed25519_public_key_is_zero(&service->keys.identity_pk))) {
  164. return;
  165. }
  166. elm = HT_REMOVE(hs_service_ht, map, service);
  167. if (elm) {
  168. tor_assert(elm == service);
  169. } else {
  170. log_warn(LD_BUG, "Could not find service in the global map "
  171. "while removing service %s",
  172. escaped(service->config.directory_path));
  173. }
  174. /* If we just modified the global map, we notify. */
  175. if (map == hs_service_map) {
  176. hs_service_map_has_changed();
  177. }
  178. }
  179. /* Set the default values for a service configuration object <b>c</b>. */
  180. static void
  181. set_service_default_config(hs_service_config_t *c,
  182. const or_options_t *options)
  183. {
  184. (void) options;
  185. tor_assert(c);
  186. c->ports = smartlist_new();
  187. c->directory_path = NULL;
  188. c->max_streams_per_rdv_circuit = 0;
  189. c->max_streams_close_circuit = 0;
  190. c->num_intro_points = NUM_INTRO_POINTS_DEFAULT;
  191. c->allow_unknown_ports = 0;
  192. c->is_single_onion = 0;
  193. c->dir_group_readable = 0;
  194. c->is_ephemeral = 0;
  195. }
  196. /* From a service configuration object config, clear everything from it
  197. * meaning free allocated pointers and reset the values. */
  198. static void
  199. service_clear_config(hs_service_config_t *config)
  200. {
  201. if (config == NULL) {
  202. return;
  203. }
  204. tor_free(config->directory_path);
  205. if (config->ports) {
  206. SMARTLIST_FOREACH(config->ports, rend_service_port_config_t *, p,
  207. rend_service_port_config_free(p););
  208. smartlist_free(config->ports);
  209. }
  210. memset(config, 0, sizeof(*config));
  211. }
  212. /* Helper function to return a human readable description of the given intro
  213. * point object.
  214. *
  215. * This function is not thread-safe. Each call to this invalidates the
  216. * previous values returned by it. */
  217. static const char *
  218. describe_intro_point(const hs_service_intro_point_t *ip)
  219. {
  220. /* Hex identity digest of the IP prefixed by the $ sign and ends with NUL
  221. * byte hence the plus two. */
  222. static char buf[HEX_DIGEST_LEN + 2];
  223. const char *legacy_id = NULL;
  224. SMARTLIST_FOREACH_BEGIN(ip->base.link_specifiers,
  225. const hs_desc_link_specifier_t *, lspec) {
  226. if (lspec->type == LS_LEGACY_ID) {
  227. legacy_id = (const char *) lspec->u.legacy_id;
  228. break;
  229. }
  230. } SMARTLIST_FOREACH_END(lspec);
  231. /* For now, we only print the identity digest but we could improve this with
  232. * much more information such as the ed25519 identity has well. */
  233. buf[0] = '$';
  234. if (legacy_id) {
  235. base16_encode(buf + 1, HEX_DIGEST_LEN + 1, legacy_id, DIGEST_LEN);
  236. }
  237. return buf;
  238. }
  239. /* Return the lower bound of maximum INTRODUCE2 cells per circuit before we
  240. * rotate intro point (defined by a consensus parameter or the default
  241. * value). */
  242. static int32_t
  243. get_intro_point_min_introduce2(void)
  244. {
  245. /* The [0, 2147483647] range is quite large to accommodate anything we decide
  246. * in the future. */
  247. return networkstatus_get_param(NULL, "hs_intro_min_introduce2",
  248. INTRO_POINT_MIN_LIFETIME_INTRODUCTIONS,
  249. 0, INT32_MAX);
  250. }
  251. /* Return the upper bound of maximum INTRODUCE2 cells per circuit before we
  252. * rotate intro point (defined by a consensus parameter or the default
  253. * value). */
  254. static int32_t
  255. get_intro_point_max_introduce2(void)
  256. {
  257. /* The [0, 2147483647] range is quite large to accommodate anything we decide
  258. * in the future. */
  259. return networkstatus_get_param(NULL, "hs_intro_max_introduce2",
  260. INTRO_POINT_MAX_LIFETIME_INTRODUCTIONS,
  261. 0, INT32_MAX);
  262. }
  263. /* Return the minimum lifetime in seconds of an introduction point defined by a
  264. * consensus parameter or the default value. */
  265. static int32_t
  266. get_intro_point_min_lifetime(void)
  267. {
  268. #define MIN_INTRO_POINT_LIFETIME_TESTING 10
  269. if (get_options()->TestingTorNetwork) {
  270. return MIN_INTRO_POINT_LIFETIME_TESTING;
  271. }
  272. /* The [0, 2147483647] range is quite large to accommodate anything we decide
  273. * in the future. */
  274. return networkstatus_get_param(NULL, "hs_intro_min_lifetime",
  275. INTRO_POINT_LIFETIME_MIN_SECONDS,
  276. 0, INT32_MAX);
  277. }
  278. /* Return the maximum lifetime in seconds of an introduction point defined by a
  279. * consensus parameter or the default value. */
  280. static int32_t
  281. get_intro_point_max_lifetime(void)
  282. {
  283. #define MAX_INTRO_POINT_LIFETIME_TESTING 30
  284. if (get_options()->TestingTorNetwork) {
  285. return MAX_INTRO_POINT_LIFETIME_TESTING;
  286. }
  287. /* The [0, 2147483647] range is quite large to accommodate anything we decide
  288. * in the future. */
  289. return networkstatus_get_param(NULL, "hs_intro_max_lifetime",
  290. INTRO_POINT_LIFETIME_MAX_SECONDS,
  291. 0, INT32_MAX);
  292. }
  293. /* Return the number of extra introduction point defined by a consensus
  294. * parameter or the default value. */
  295. static int32_t
  296. get_intro_point_num_extra(void)
  297. {
  298. /* The [0, 128] range bounds the number of extra introduction point allowed.
  299. * Above 128 intro points, it's getting a bit crazy. */
  300. return networkstatus_get_param(NULL, "hs_intro_num_extra",
  301. NUM_INTRO_POINTS_EXTRA, 0, 128);
  302. }
  303. /* Helper: Function that needs to return 1 for the HT for each loop which
  304. * frees every service in an hash map. */
  305. static int
  306. ht_free_service_(struct hs_service_t *service, void *data)
  307. {
  308. (void) data;
  309. hs_service_free(service);
  310. /* This function MUST return 1 so the given object is then removed from the
  311. * service map leading to this free of the object being safe. */
  312. return 1;
  313. }
  314. /* Free every service that can be found in the global map. Once done, clear
  315. * and free the global map. */
  316. static void
  317. service_free_all(void)
  318. {
  319. if (hs_service_map) {
  320. /* The free helper function returns 1 so this is safe. */
  321. hs_service_ht_HT_FOREACH_FN(hs_service_map, ht_free_service_, NULL);
  322. HT_CLEAR(hs_service_ht, hs_service_map);
  323. tor_free(hs_service_map);
  324. hs_service_map = NULL;
  325. }
  326. if (hs_service_staging_list) {
  327. /* Cleanup staging list. */
  328. SMARTLIST_FOREACH(hs_service_staging_list, hs_service_t *, s,
  329. hs_service_free(s));
  330. smartlist_free(hs_service_staging_list);
  331. hs_service_staging_list = NULL;
  332. }
  333. }
  334. /* Free a given service intro point object. */
  335. STATIC void
  336. service_intro_point_free_(hs_service_intro_point_t *ip)
  337. {
  338. if (!ip) {
  339. return;
  340. }
  341. memwipe(&ip->auth_key_kp, 0, sizeof(ip->auth_key_kp));
  342. memwipe(&ip->enc_key_kp, 0, sizeof(ip->enc_key_kp));
  343. crypto_pk_free(ip->legacy_key);
  344. replaycache_free(ip->replay_cache);
  345. hs_intropoint_clear(&ip->base);
  346. tor_free(ip);
  347. }
  348. /* Helper: free an hs_service_intro_point_t object. This function is used by
  349. * digest256map_free() which requires a void * pointer. */
  350. static void
  351. service_intro_point_free_void(void *obj)
  352. {
  353. service_intro_point_free_(obj);
  354. }
  355. /* Return a newly allocated service intro point and fully initialized from the
  356. * given extend_info_t ei if non NULL. If is_legacy is true, we also generate
  357. * the legacy key. On error, NULL is returned.
  358. *
  359. * If ei is NULL, returns a hs_service_intro_point_t with an empty link
  360. * specifier list and no onion key. (This is used for testing.)
  361. *
  362. * ei must be an extend_info_t containing an IPv4 address. (We will add supoort
  363. * for IPv6 in a later release.) When calling extend_info_from_node(), pass
  364. * 0 in for_direct_connection to make sure ei always has an IPv4 address. */
  365. STATIC hs_service_intro_point_t *
  366. service_intro_point_new(const extend_info_t *ei, unsigned int is_legacy)
  367. {
  368. hs_desc_link_specifier_t *ls;
  369. hs_service_intro_point_t *ip;
  370. ip = tor_malloc_zero(sizeof(*ip));
  371. /* We'll create the key material. No need for extra strong, those are short
  372. * term keys. */
  373. ed25519_keypair_generate(&ip->auth_key_kp, 0);
  374. { /* Set introduce2 max cells limit */
  375. int32_t min_introduce2_cells = get_intro_point_min_introduce2();
  376. int32_t max_introduce2_cells = get_intro_point_max_introduce2();
  377. if (BUG(max_introduce2_cells < min_introduce2_cells)) {
  378. goto err;
  379. }
  380. ip->introduce2_max = crypto_rand_int_range(min_introduce2_cells,
  381. max_introduce2_cells);
  382. }
  383. { /* Set intro point lifetime */
  384. int32_t intro_point_min_lifetime = get_intro_point_min_lifetime();
  385. int32_t intro_point_max_lifetime = get_intro_point_max_lifetime();
  386. if (BUG(intro_point_max_lifetime < intro_point_min_lifetime)) {
  387. goto err;
  388. }
  389. ip->time_to_expire = time(NULL) +
  390. crypto_rand_int_range(intro_point_min_lifetime,intro_point_max_lifetime);
  391. }
  392. ip->replay_cache = replaycache_new(0, 0);
  393. /* Initialize the base object. We don't need the certificate object. */
  394. ip->base.link_specifiers = smartlist_new();
  395. /* Generate the encryption key for this intro point. */
  396. curve25519_keypair_generate(&ip->enc_key_kp, 0);
  397. /* Figure out if this chosen node supports v3 or is legacy only. */
  398. if (is_legacy) {
  399. ip->base.is_only_legacy = 1;
  400. /* Legacy mode that is doesn't support v3+ with ed25519 auth key. */
  401. ip->legacy_key = crypto_pk_new();
  402. if (crypto_pk_generate_key(ip->legacy_key) < 0) {
  403. goto err;
  404. }
  405. if (crypto_pk_get_digest(ip->legacy_key,
  406. (char *) ip->legacy_key_digest) < 0) {
  407. goto err;
  408. }
  409. }
  410. if (ei == NULL) {
  411. goto done;
  412. }
  413. /* We'll try to add all link specifiers. Legacy is mandatory.
  414. * IPv4 or IPv6 is required, and we always send IPv4. */
  415. ls = hs_desc_link_specifier_new(ei, LS_IPV4);
  416. /* It is impossible to have an extend info object without a v4. */
  417. if (BUG(!ls)) {
  418. goto err;
  419. }
  420. smartlist_add(ip->base.link_specifiers, ls);
  421. ls = hs_desc_link_specifier_new(ei, LS_LEGACY_ID);
  422. /* It is impossible to have an extend info object without an identity
  423. * digest. */
  424. if (BUG(!ls)) {
  425. goto err;
  426. }
  427. smartlist_add(ip->base.link_specifiers, ls);
  428. /* ed25519 identity key is optional for intro points */
  429. ls = hs_desc_link_specifier_new(ei, LS_ED25519_ID);
  430. if (ls) {
  431. smartlist_add(ip->base.link_specifiers, ls);
  432. }
  433. /* IPv6 is not supported in this release. */
  434. /* Finally, copy onion key from the extend_info_t object. */
  435. memcpy(&ip->onion_key, &ei->curve25519_onion_key, sizeof(ip->onion_key));
  436. done:
  437. return ip;
  438. err:
  439. service_intro_point_free(ip);
  440. return NULL;
  441. }
  442. /* Add the given intro point object to the given intro point map. The intro
  443. * point MUST have its RSA encryption key set if this is a legacy type or the
  444. * authentication key set otherwise. */
  445. STATIC void
  446. service_intro_point_add(digest256map_t *map, hs_service_intro_point_t *ip)
  447. {
  448. hs_service_intro_point_t *old_ip_entry;
  449. tor_assert(map);
  450. tor_assert(ip);
  451. old_ip_entry = digest256map_set(map, ip->auth_key_kp.pubkey.pubkey, ip);
  452. /* Make sure we didn't just try to double-add an intro point */
  453. tor_assert_nonfatal(!old_ip_entry);
  454. }
  455. /* For a given service, remove the intro point from that service's descriptors
  456. * (check both current and next descriptor) */
  457. STATIC void
  458. service_intro_point_remove(const hs_service_t *service,
  459. const hs_service_intro_point_t *ip)
  460. {
  461. tor_assert(service);
  462. tor_assert(ip);
  463. /* Trying all descriptors. */
  464. FOR_EACH_DESCRIPTOR_BEGIN(service, desc) {
  465. /* We'll try to remove the descriptor on both descriptors which is not
  466. * very expensive to do instead of doing loopup + remove. */
  467. digest256map_remove(desc->intro_points.map,
  468. ip->auth_key_kp.pubkey.pubkey);
  469. } FOR_EACH_DESCRIPTOR_END;
  470. }
  471. /* For a given service and authentication key, return the intro point or NULL
  472. * if not found. This will check both descriptors in the service. */
  473. STATIC hs_service_intro_point_t *
  474. service_intro_point_find(const hs_service_t *service,
  475. const ed25519_public_key_t *auth_key)
  476. {
  477. hs_service_intro_point_t *ip = NULL;
  478. tor_assert(service);
  479. tor_assert(auth_key);
  480. /* Trying all descriptors to find the right intro point.
  481. *
  482. * Even if we use the same node as intro point in both descriptors, the node
  483. * will have a different intro auth key for each descriptor since we generate
  484. * a new one everytime we pick an intro point.
  485. *
  486. * After #22893 gets implemented, intro points will be moved to be
  487. * per-service instead of per-descriptor so this function will need to
  488. * change.
  489. */
  490. FOR_EACH_DESCRIPTOR_BEGIN(service, desc) {
  491. if ((ip = digest256map_get(desc->intro_points.map,
  492. auth_key->pubkey)) != NULL) {
  493. break;
  494. }
  495. } FOR_EACH_DESCRIPTOR_END;
  496. return ip;
  497. }
  498. /* For a given service and intro point, return the descriptor for which the
  499. * intro point is assigned to. NULL is returned if not found. */
  500. STATIC hs_service_descriptor_t *
  501. service_desc_find_by_intro(const hs_service_t *service,
  502. const hs_service_intro_point_t *ip)
  503. {
  504. hs_service_descriptor_t *descp = NULL;
  505. tor_assert(service);
  506. tor_assert(ip);
  507. FOR_EACH_DESCRIPTOR_BEGIN(service, desc) {
  508. if (digest256map_get(desc->intro_points.map,
  509. ip->auth_key_kp.pubkey.pubkey)) {
  510. descp = desc;
  511. break;
  512. }
  513. } FOR_EACH_DESCRIPTOR_END;
  514. return descp;
  515. }
  516. /* From a circuit identifier, get all the possible objects associated with the
  517. * ident. If not NULL, service, ip or desc are set if the object can be found.
  518. * They are untouched if they can't be found.
  519. *
  520. * This is an helper function because we do those lookups often so it's more
  521. * convenient to simply call this functions to get all the things at once. */
  522. STATIC void
  523. get_objects_from_ident(const hs_ident_circuit_t *ident,
  524. hs_service_t **service, hs_service_intro_point_t **ip,
  525. hs_service_descriptor_t **desc)
  526. {
  527. hs_service_t *s;
  528. tor_assert(ident);
  529. /* Get service object from the circuit identifier. */
  530. s = find_service(hs_service_map, &ident->identity_pk);
  531. if (s && service) {
  532. *service = s;
  533. }
  534. /* From the service object, get the intro point object of that circuit. The
  535. * following will query both descriptors intro points list. */
  536. if (s && ip) {
  537. *ip = service_intro_point_find(s, &ident->intro_auth_pk);
  538. }
  539. /* Get the descriptor for this introduction point and service. */
  540. if (s && ip && *ip && desc) {
  541. *desc = service_desc_find_by_intro(s, *ip);
  542. }
  543. }
  544. /* From a given intro point, return the first link specifier of type
  545. * encountered in the link specifier list. Return NULL if it can't be found.
  546. *
  547. * The caller does NOT have ownership of the object, the intro point does. */
  548. static hs_desc_link_specifier_t *
  549. get_link_spec_by_type(const hs_service_intro_point_t *ip, uint8_t type)
  550. {
  551. hs_desc_link_specifier_t *lnk_spec = NULL;
  552. tor_assert(ip);
  553. SMARTLIST_FOREACH_BEGIN(ip->base.link_specifiers,
  554. hs_desc_link_specifier_t *, ls) {
  555. if (ls->type == type) {
  556. lnk_spec = ls;
  557. goto end;
  558. }
  559. } SMARTLIST_FOREACH_END(ls);
  560. end:
  561. return lnk_spec;
  562. }
  563. /* Given a service intro point, return the node_t associated to it. This can
  564. * return NULL if the given intro point has no legacy ID or if the node can't
  565. * be found in the consensus. */
  566. STATIC const node_t *
  567. get_node_from_intro_point(const hs_service_intro_point_t *ip)
  568. {
  569. const hs_desc_link_specifier_t *ls;
  570. tor_assert(ip);
  571. ls = get_link_spec_by_type(ip, LS_LEGACY_ID);
  572. if (BUG(!ls)) {
  573. return NULL;
  574. }
  575. /* XXX In the future, we want to only use the ed25519 ID (#22173). */
  576. return node_get_by_id((const char *) ls->u.legacy_id);
  577. }
  578. /* Given a service intro point, return the extend_info_t for it. This can
  579. * return NULL if the node can't be found for the intro point or the extend
  580. * info can't be created for the found node. If direct_conn is set, the extend
  581. * info is validated on if we can connect directly. */
  582. static extend_info_t *
  583. get_extend_info_from_intro_point(const hs_service_intro_point_t *ip,
  584. unsigned int direct_conn)
  585. {
  586. extend_info_t *info = NULL;
  587. const node_t *node;
  588. tor_assert(ip);
  589. node = get_node_from_intro_point(ip);
  590. if (node == NULL) {
  591. /* This can happen if the relay serving as intro point has been removed
  592. * from the consensus. In that case, the intro point will be removed from
  593. * the descriptor during the scheduled events. */
  594. goto end;
  595. }
  596. /* In the case of a direct connection (single onion service), it is possible
  597. * our firewall policy won't allow it so this can return a NULL value. */
  598. info = extend_info_from_node(node, direct_conn);
  599. end:
  600. return info;
  601. }
  602. /* Return the number of introduction points that are established for the
  603. * given descriptor. */
  604. static unsigned int
  605. count_desc_circuit_established(const hs_service_descriptor_t *desc)
  606. {
  607. unsigned int count = 0;
  608. tor_assert(desc);
  609. DIGEST256MAP_FOREACH(desc->intro_points.map, key,
  610. const hs_service_intro_point_t *, ip) {
  611. count += ip->circuit_established;
  612. } DIGEST256MAP_FOREACH_END;
  613. return count;
  614. }
  615. /* For a given service and descriptor of that service, close all active
  616. * directory connections. */
  617. static void
  618. close_directory_connections(const hs_service_t *service,
  619. const hs_service_descriptor_t *desc)
  620. {
  621. unsigned int count = 0;
  622. smartlist_t *dir_conns;
  623. tor_assert(service);
  624. tor_assert(desc);
  625. /* Close pending HS desc upload connections for the blinded key of 'desc'. */
  626. dir_conns = connection_list_by_type_purpose(CONN_TYPE_DIR,
  627. DIR_PURPOSE_UPLOAD_HSDESC);
  628. SMARTLIST_FOREACH_BEGIN(dir_conns, connection_t *, conn) {
  629. dir_connection_t *dir_conn = TO_DIR_CONN(conn);
  630. if (ed25519_pubkey_eq(&dir_conn->hs_ident->identity_pk,
  631. &service->keys.identity_pk) &&
  632. ed25519_pubkey_eq(&dir_conn->hs_ident->blinded_pk,
  633. &desc->blinded_kp.pubkey)) {
  634. connection_mark_for_close(conn);
  635. count++;
  636. continue;
  637. }
  638. } SMARTLIST_FOREACH_END(conn);
  639. log_info(LD_REND, "Closed %u active service directory connections for "
  640. "descriptor %s of service %s",
  641. count, safe_str_client(ed25519_fmt(&desc->blinded_kp.pubkey)),
  642. safe_str_client(service->onion_address));
  643. /* We don't have ownership of the objects in this list. */
  644. smartlist_free(dir_conns);
  645. }
  646. /* Close all rendezvous circuits for the given service. */
  647. static void
  648. close_service_rp_circuits(hs_service_t *service)
  649. {
  650. origin_circuit_t *ocirc = NULL;
  651. tor_assert(service);
  652. /* The reason we go over all circuit instead of using the circuitmap API is
  653. * because most hidden service circuits are rendezvous circuits so there is
  654. * no real improvement at getting all rendezvous circuits from the
  655. * circuitmap and then going over them all to find the right ones.
  656. * Furthermore, another option would have been to keep a list of RP cookies
  657. * for a service but it creates an engineering complexity since we don't
  658. * have a "RP circuit closed" event to clean it up properly so we avoid a
  659. * memory DoS possibility. */
  660. while ((ocirc = circuit_get_next_service_rp_circ(ocirc))) {
  661. /* Only close circuits that are v3 and for this service. */
  662. if (ocirc->hs_ident != NULL &&
  663. ed25519_pubkey_eq(&ocirc->hs_ident->identity_pk,
  664. &service->keys.identity_pk)) {
  665. /* Reason is FINISHED because service has been removed and thus the
  666. * circuit is considered old/uneeded. When freed, it is removed from the
  667. * hs circuitmap. */
  668. circuit_mark_for_close(TO_CIRCUIT(ocirc), END_CIRC_REASON_FINISHED);
  669. }
  670. }
  671. }
  672. /* Close the circuit(s) for the given map of introduction points. */
  673. static void
  674. close_intro_circuits(hs_service_intropoints_t *intro_points)
  675. {
  676. tor_assert(intro_points);
  677. DIGEST256MAP_FOREACH(intro_points->map, key,
  678. const hs_service_intro_point_t *, ip) {
  679. origin_circuit_t *ocirc = hs_circ_service_get_intro_circ(ip);
  680. if (ocirc) {
  681. /* Reason is FINISHED because service has been removed and thus the
  682. * circuit is considered old/uneeded. When freed, the circuit is removed
  683. * from the HS circuitmap. */
  684. circuit_mark_for_close(TO_CIRCUIT(ocirc), END_CIRC_REASON_FINISHED);
  685. }
  686. } DIGEST256MAP_FOREACH_END;
  687. }
  688. /* Close all introduction circuits for the given service. */
  689. static void
  690. close_service_intro_circuits(hs_service_t *service)
  691. {
  692. tor_assert(service);
  693. FOR_EACH_DESCRIPTOR_BEGIN(service, desc) {
  694. close_intro_circuits(&desc->intro_points);
  695. } FOR_EACH_DESCRIPTOR_END;
  696. }
  697. /* Close any circuits related to the given service. */
  698. static void
  699. close_service_circuits(hs_service_t *service)
  700. {
  701. tor_assert(service);
  702. /* Only support for version >= 3. */
  703. if (BUG(service->config.version < HS_VERSION_THREE)) {
  704. return;
  705. }
  706. /* Close intro points. */
  707. close_service_intro_circuits(service);
  708. /* Close rendezvous points. */
  709. close_service_rp_circuits(service);
  710. }
  711. /* Move every ephemeral services from the src service map to the dst service
  712. * map. It is possible that a service can't be register to the dst map which
  713. * won't stop the process of moving them all but will trigger a log warn. */
  714. static void
  715. move_ephemeral_services(hs_service_ht *src, hs_service_ht *dst)
  716. {
  717. hs_service_t **iter, **next;
  718. tor_assert(src);
  719. tor_assert(dst);
  720. /* Iterate over the map to find ephemeral service and move them to the other
  721. * map. We loop using this method to have a safe removal process. */
  722. for (iter = HT_START(hs_service_ht, src); iter != NULL; iter = next) {
  723. hs_service_t *s = *iter;
  724. if (!s->config.is_ephemeral) {
  725. /* Yeah, we are in a very manual loop :). */
  726. next = HT_NEXT(hs_service_ht, src, iter);
  727. continue;
  728. }
  729. /* Remove service from map and then register to it to the other map.
  730. * Reminder that "*iter" and "s" are the same thing. */
  731. next = HT_NEXT_RMV(hs_service_ht, src, iter);
  732. if (register_service(dst, s) < 0) {
  733. log_warn(LD_BUG, "Ephemeral service key is already being used. "
  734. "Skipping.");
  735. }
  736. }
  737. }
  738. /* Return a const string of the directory path escaped. If this is an
  739. * ephemeral service, it returns "[EPHEMERAL]". This can only be called from
  740. * the main thread because escaped() uses a static variable. */
  741. static const char *
  742. service_escaped_dir(const hs_service_t *s)
  743. {
  744. return (s->config.is_ephemeral) ? "[EPHEMERAL]" :
  745. escaped(s->config.directory_path);
  746. }
  747. /** Move the hidden service state from <b>src</b> to <b>dst</b>. We do this
  748. * when we receive a SIGHUP: <b>dst</b> is the post-HUP service */
  749. static void
  750. move_hs_state(hs_service_t *src_service, hs_service_t *dst_service)
  751. {
  752. tor_assert(src_service);
  753. tor_assert(dst_service);
  754. hs_service_state_t *src = &src_service->state;
  755. hs_service_state_t *dst = &dst_service->state;
  756. /* Let's do a shallow copy */
  757. dst->intro_circ_retry_started_time = src->intro_circ_retry_started_time;
  758. dst->num_intro_circ_launched = src->num_intro_circ_launched;
  759. /* Freeing a NULL replaycache triggers an info LD_BUG. */
  760. if (dst->replay_cache_rend_cookie != NULL) {
  761. replaycache_free(dst->replay_cache_rend_cookie);
  762. }
  763. dst->replay_cache_rend_cookie = src->replay_cache_rend_cookie;
  764. src->replay_cache_rend_cookie = NULL; /* steal pointer reference */
  765. }
  766. /* Register services that are in the staging list. Once this function returns,
  767. * the global service map will be set with the right content and all non
  768. * surviving services will be cleaned up. */
  769. static void
  770. register_all_services(void)
  771. {
  772. struct hs_service_ht *new_service_map;
  773. tor_assert(hs_service_staging_list);
  774. /* Allocate a new map that will replace the current one. */
  775. new_service_map = tor_malloc_zero(sizeof(*new_service_map));
  776. HT_INIT(hs_service_ht, new_service_map);
  777. /* First step is to transfer all ephemeral services from the current global
  778. * map to the new one we are constructing. We do not prune ephemeral
  779. * services as the only way to kill them is by deleting it from the control
  780. * port or stopping the tor daemon. */
  781. move_ephemeral_services(hs_service_map, new_service_map);
  782. SMARTLIST_FOREACH_BEGIN(hs_service_staging_list, hs_service_t *, snew) {
  783. hs_service_t *s;
  784. /* Check if that service is already in our global map and if so, we'll
  785. * transfer the intro points to it. */
  786. s = find_service(hs_service_map, &snew->keys.identity_pk);
  787. if (s) {
  788. /* Pass ownership of the descriptors from s (the current service) to
  789. * snew (the newly configured one). */
  790. move_descriptors(s, snew);
  791. move_hs_state(s, snew);
  792. /* Remove the service from the global map because after this, we need to
  793. * go over the remaining service in that map that aren't surviving the
  794. * reload to close their circuits. */
  795. remove_service(hs_service_map, s);
  796. hs_service_free(s);
  797. }
  798. /* Great, this service is now ready to be added to our new map. */
  799. if (BUG(register_service(new_service_map, snew) < 0)) {
  800. /* This should never happen because prior to registration, we validate
  801. * every service against the entire set. Not being able to register a
  802. * service means we failed to validate correctly. In that case, don't
  803. * break tor and ignore the service but tell user. */
  804. log_warn(LD_BUG, "Unable to register service with directory %s",
  805. service_escaped_dir(snew));
  806. SMARTLIST_DEL_CURRENT(hs_service_staging_list, snew);
  807. hs_service_free(snew);
  808. }
  809. } SMARTLIST_FOREACH_END(snew);
  810. /* Close any circuits associated with the non surviving services. Every
  811. * service in the current global map are roaming. */
  812. FOR_EACH_SERVICE_BEGIN(service) {
  813. close_service_circuits(service);
  814. } FOR_EACH_SERVICE_END;
  815. /* Time to make the switch. We'll clear the staging list because its content
  816. * has now changed ownership to the map. */
  817. smartlist_clear(hs_service_staging_list);
  818. service_free_all();
  819. hs_service_map = new_service_map;
  820. /* We've just register services into the new map and now we've replaced the
  821. * global map with it so we have to notify that the change happened. When
  822. * registering a service, the notify is only triggered if the destination
  823. * map is the global map for which in here it was not. */
  824. hs_service_map_has_changed();
  825. }
  826. /* Write the onion address of a given service to the given filename fname_ in
  827. * the service directory. Return 0 on success else -1 on error. */
  828. STATIC int
  829. write_address_to_file(const hs_service_t *service, const char *fname_)
  830. {
  831. int ret = -1;
  832. char *fname = NULL;
  833. char *addr_buf = NULL;
  834. tor_assert(service);
  835. tor_assert(fname_);
  836. /* Construct the full address with the onion tld and write the hostname file
  837. * to disk. */
  838. tor_asprintf(&addr_buf, "%s.%s\n", service->onion_address, address_tld);
  839. /* Notice here that we use the given "fname_". */
  840. fname = hs_path_from_filename(service->config.directory_path, fname_);
  841. if (write_str_to_file(fname, addr_buf, 0) < 0) {
  842. log_warn(LD_REND, "Could not write onion address to hostname file %s",
  843. escaped(fname));
  844. goto end;
  845. }
  846. #ifndef _WIN32
  847. if (service->config.dir_group_readable) {
  848. /* Mode to 0640. */
  849. if (chmod(fname, S_IRUSR | S_IWUSR | S_IRGRP) < 0) {
  850. log_warn(LD_FS, "Unable to make onion service hostname file %s "
  851. "group-readable.", escaped(fname));
  852. }
  853. }
  854. #endif /* !defined(_WIN32) */
  855. /* Success. */
  856. ret = 0;
  857. end:
  858. tor_free(fname);
  859. tor_free(addr_buf);
  860. return ret;
  861. }
  862. /* Load and/or generate private keys for the given service. On success, the
  863. * hostname file will be written to disk along with the master private key iff
  864. * the service is not configured for offline keys. Return 0 on success else -1
  865. * on failure. */
  866. static int
  867. load_service_keys(hs_service_t *service)
  868. {
  869. int ret = -1;
  870. char *fname = NULL;
  871. ed25519_keypair_t *kp;
  872. const hs_service_config_t *config;
  873. tor_assert(service);
  874. config = &service->config;
  875. /* Create and fix permission on service directory. We are about to write
  876. * files to that directory so make sure it exists and has the right
  877. * permissions. We do this here because at this stage we know that Tor is
  878. * actually running and the service we have has been validated. */
  879. if (BUG(hs_check_service_private_dir(get_options()->User,
  880. config->directory_path,
  881. config->dir_group_readable, 1) < 0)) {
  882. goto end;
  883. }
  884. /* Try to load the keys from file or generate it if not found. */
  885. fname = hs_path_from_filename(config->directory_path, fname_keyfile_prefix);
  886. /* Don't ask for key creation, we want to know if we were able to load it or
  887. * we had to generate it. Better logging! */
  888. kp = ed_key_init_from_file(fname, INIT_ED_KEY_SPLIT, LOG_INFO, NULL, 0, 0,
  889. 0, NULL);
  890. if (!kp) {
  891. log_info(LD_REND, "Unable to load keys from %s. Generating it...", fname);
  892. /* We'll now try to generate the keys and for it we want the strongest
  893. * randomness for it. The keypair will be written in different files. */
  894. uint32_t key_flags = INIT_ED_KEY_CREATE | INIT_ED_KEY_EXTRA_STRONG |
  895. INIT_ED_KEY_SPLIT;
  896. kp = ed_key_init_from_file(fname, key_flags, LOG_WARN, NULL, 0, 0, 0,
  897. NULL);
  898. if (!kp) {
  899. log_warn(LD_REND, "Unable to generate keys and save in %s.", fname);
  900. goto end;
  901. }
  902. }
  903. /* Copy loaded or generated keys to service object. */
  904. ed25519_pubkey_copy(&service->keys.identity_pk, &kp->pubkey);
  905. memcpy(&service->keys.identity_sk, &kp->seckey,
  906. sizeof(service->keys.identity_sk));
  907. /* This does a proper memory wipe. */
  908. ed25519_keypair_free(kp);
  909. /* Build onion address from the newly loaded keys. */
  910. tor_assert(service->config.version <= UINT8_MAX);
  911. hs_build_address(&service->keys.identity_pk,
  912. (uint8_t) service->config.version,
  913. service->onion_address);
  914. /* Write onion address to hostname file. */
  915. if (write_address_to_file(service, fname_hostname) < 0) {
  916. goto end;
  917. }
  918. /* Succes. */
  919. ret = 0;
  920. end:
  921. tor_free(fname);
  922. return ret;
  923. }
  924. /* Free a given service descriptor object and all key material is wiped. */
  925. STATIC void
  926. service_descriptor_free_(hs_service_descriptor_t *desc)
  927. {
  928. if (!desc) {
  929. return;
  930. }
  931. hs_descriptor_free(desc->desc);
  932. memwipe(&desc->signing_kp, 0, sizeof(desc->signing_kp));
  933. memwipe(&desc->blinded_kp, 0, sizeof(desc->blinded_kp));
  934. /* Cleanup all intro points. */
  935. digest256map_free(desc->intro_points.map, service_intro_point_free_void);
  936. digestmap_free(desc->intro_points.failed_id, tor_free_);
  937. if (desc->previous_hsdirs) {
  938. SMARTLIST_FOREACH(desc->previous_hsdirs, char *, s, tor_free(s));
  939. smartlist_free(desc->previous_hsdirs);
  940. }
  941. tor_free(desc);
  942. }
  943. /* Return a newly allocated service descriptor object. */
  944. STATIC hs_service_descriptor_t *
  945. service_descriptor_new(void)
  946. {
  947. hs_service_descriptor_t *sdesc = tor_malloc_zero(sizeof(*sdesc));
  948. sdesc->desc = tor_malloc_zero(sizeof(hs_descriptor_t));
  949. /* Initialize the intro points map. */
  950. sdesc->intro_points.map = digest256map_new();
  951. sdesc->intro_points.failed_id = digestmap_new();
  952. sdesc->previous_hsdirs = smartlist_new();
  953. return sdesc;
  954. }
  955. /* Move descriptor(s) from the src service to the dst service. We do this
  956. * during SIGHUP when we re-create our hidden services. */
  957. static void
  958. move_descriptors(hs_service_t *src, hs_service_t *dst)
  959. {
  960. tor_assert(src);
  961. tor_assert(dst);
  962. if (src->desc_current) {
  963. /* Nothing should be there, but clean it up just in case */
  964. if (BUG(dst->desc_current)) {
  965. service_descriptor_free(dst->desc_current);
  966. }
  967. dst->desc_current = src->desc_current;
  968. src->desc_current = NULL;
  969. }
  970. if (src->desc_next) {
  971. /* Nothing should be there, but clean it up just in case */
  972. if (BUG(dst->desc_next)) {
  973. service_descriptor_free(dst->desc_next);
  974. }
  975. dst->desc_next = src->desc_next;
  976. src->desc_next = NULL;
  977. }
  978. }
  979. /* From the given service, remove all expired failing intro points for each
  980. * descriptor. */
  981. static void
  982. remove_expired_failing_intro(hs_service_t *service, time_t now)
  983. {
  984. tor_assert(service);
  985. /* For both descriptors, cleanup the failing intro points list. */
  986. FOR_EACH_DESCRIPTOR_BEGIN(service, desc) {
  987. DIGESTMAP_FOREACH_MODIFY(desc->intro_points.failed_id, key, time_t *, t) {
  988. time_t failure_time = *t;
  989. if ((failure_time + INTRO_CIRC_RETRY_PERIOD) <= now) {
  990. MAP_DEL_CURRENT(key);
  991. tor_free(t);
  992. }
  993. } DIGESTMAP_FOREACH_END;
  994. } FOR_EACH_DESCRIPTOR_END;
  995. }
  996. /* For the given descriptor desc, put all node_t object found from its failing
  997. * intro point list and put them in the given node_list. */
  998. static void
  999. setup_intro_point_exclude_list(const hs_service_descriptor_t *desc,
  1000. smartlist_t *node_list)
  1001. {
  1002. tor_assert(desc);
  1003. tor_assert(node_list);
  1004. DIGESTMAP_FOREACH(desc->intro_points.failed_id, key, time_t *, t) {
  1005. (void) t; /* Make gcc happy. */
  1006. const node_t *node = node_get_by_id(key);
  1007. if (node) {
  1008. smartlist_add(node_list, (void *) node);
  1009. }
  1010. } DIGESTMAP_FOREACH_END;
  1011. }
  1012. /* For the given failing intro point ip, we add its time of failure to the
  1013. * failed map and index it by identity digest (legacy ID) in the descriptor
  1014. * desc failed id map. */
  1015. static void
  1016. remember_failing_intro_point(const hs_service_intro_point_t *ip,
  1017. hs_service_descriptor_t *desc, time_t now)
  1018. {
  1019. time_t *time_of_failure, *prev_ptr;
  1020. const hs_desc_link_specifier_t *legacy_ls;
  1021. tor_assert(ip);
  1022. tor_assert(desc);
  1023. time_of_failure = tor_malloc_zero(sizeof(time_t));
  1024. *time_of_failure = now;
  1025. legacy_ls = get_link_spec_by_type(ip, LS_LEGACY_ID);
  1026. tor_assert(legacy_ls);
  1027. prev_ptr = digestmap_set(desc->intro_points.failed_id,
  1028. (const char *) legacy_ls->u.legacy_id,
  1029. time_of_failure);
  1030. tor_free(prev_ptr);
  1031. }
  1032. /* Copy the descriptor link specifier object from src to dst. */
  1033. static void
  1034. link_specifier_copy(hs_desc_link_specifier_t *dst,
  1035. const hs_desc_link_specifier_t *src)
  1036. {
  1037. tor_assert(dst);
  1038. tor_assert(src);
  1039. memcpy(dst, src, sizeof(hs_desc_link_specifier_t));
  1040. }
  1041. /* Using a given descriptor signing keypair signing_kp, a service intro point
  1042. * object ip and the time now, setup the content of an already allocated
  1043. * descriptor intro desc_ip.
  1044. *
  1045. * Return 0 on success else a negative value. */
  1046. static int
  1047. setup_desc_intro_point(const ed25519_keypair_t *signing_kp,
  1048. const hs_service_intro_point_t *ip,
  1049. time_t now, hs_desc_intro_point_t *desc_ip)
  1050. {
  1051. int ret = -1;
  1052. time_t nearest_hour = now - (now % 3600);
  1053. tor_assert(signing_kp);
  1054. tor_assert(ip);
  1055. tor_assert(desc_ip);
  1056. /* Copy the onion key. */
  1057. memcpy(&desc_ip->onion_key, &ip->onion_key, sizeof(desc_ip->onion_key));
  1058. /* Key and certificate material. */
  1059. desc_ip->auth_key_cert = tor_cert_create(signing_kp,
  1060. CERT_TYPE_AUTH_HS_IP_KEY,
  1061. &ip->auth_key_kp.pubkey,
  1062. nearest_hour,
  1063. HS_DESC_CERT_LIFETIME,
  1064. CERT_FLAG_INCLUDE_SIGNING_KEY);
  1065. if (desc_ip->auth_key_cert == NULL) {
  1066. log_warn(LD_REND, "Unable to create intro point auth-key certificate");
  1067. goto done;
  1068. }
  1069. /* Copy link specifier(s). */
  1070. SMARTLIST_FOREACH_BEGIN(ip->base.link_specifiers,
  1071. const hs_desc_link_specifier_t *, ls) {
  1072. hs_desc_link_specifier_t *copy = tor_malloc_zero(sizeof(*copy));
  1073. link_specifier_copy(copy, ls);
  1074. smartlist_add(desc_ip->link_specifiers, copy);
  1075. } SMARTLIST_FOREACH_END(ls);
  1076. /* For a legacy intro point, we'll use an RSA/ed cross certificate. */
  1077. if (ip->base.is_only_legacy) {
  1078. desc_ip->legacy.key = crypto_pk_dup_key(ip->legacy_key);
  1079. /* Create cross certification cert. */
  1080. ssize_t cert_len = tor_make_rsa_ed25519_crosscert(
  1081. &signing_kp->pubkey,
  1082. desc_ip->legacy.key,
  1083. nearest_hour + HS_DESC_CERT_LIFETIME,
  1084. &desc_ip->legacy.cert.encoded);
  1085. if (cert_len < 0) {
  1086. log_warn(LD_REND, "Unable to create enc key legacy cross cert.");
  1087. goto done;
  1088. }
  1089. desc_ip->legacy.cert.len = cert_len;
  1090. }
  1091. /* Encryption key and its cross certificate. */
  1092. {
  1093. ed25519_public_key_t ed25519_pubkey;
  1094. /* Use the public curve25519 key. */
  1095. memcpy(&desc_ip->enc_key, &ip->enc_key_kp.pubkey,
  1096. sizeof(desc_ip->enc_key));
  1097. /* The following can't fail. */
  1098. ed25519_public_key_from_curve25519_public_key(&ed25519_pubkey,
  1099. &ip->enc_key_kp.pubkey,
  1100. 0);
  1101. desc_ip->enc_key_cert = tor_cert_create(signing_kp,
  1102. CERT_TYPE_CROSS_HS_IP_KEYS,
  1103. &ed25519_pubkey, nearest_hour,
  1104. HS_DESC_CERT_LIFETIME,
  1105. CERT_FLAG_INCLUDE_SIGNING_KEY);
  1106. if (desc_ip->enc_key_cert == NULL) {
  1107. log_warn(LD_REND, "Unable to create enc key curve25519 cross cert.");
  1108. goto done;
  1109. }
  1110. }
  1111. /* Success. */
  1112. ret = 0;
  1113. done:
  1114. return ret;
  1115. }
  1116. /* Using the given descriptor from the given service, build the descriptor
  1117. * intro point list so we can then encode the descriptor for publication. This
  1118. * function does not pick intro points, they have to be in the descriptor
  1119. * current map. Cryptographic material (keys) must be initialized in the
  1120. * descriptor for this function to make sense. */
  1121. static void
  1122. build_desc_intro_points(const hs_service_t *service,
  1123. hs_service_descriptor_t *desc, time_t now)
  1124. {
  1125. hs_desc_encrypted_data_t *encrypted;
  1126. tor_assert(service);
  1127. tor_assert(desc);
  1128. /* Ease our life. */
  1129. encrypted = &desc->desc->encrypted_data;
  1130. /* Cleanup intro points, we are about to set them from scratch. */
  1131. hs_descriptor_clear_intro_points(desc->desc);
  1132. DIGEST256MAP_FOREACH(desc->intro_points.map, key,
  1133. const hs_service_intro_point_t *, ip) {
  1134. hs_desc_intro_point_t *desc_ip = hs_desc_intro_point_new();
  1135. if (setup_desc_intro_point(&desc->signing_kp, ip, now, desc_ip) < 0) {
  1136. hs_desc_intro_point_free(desc_ip);
  1137. continue;
  1138. }
  1139. /* We have a valid descriptor intro point. Add it to the list. */
  1140. smartlist_add(encrypted->intro_points, desc_ip);
  1141. } DIGEST256MAP_FOREACH_END;
  1142. }
  1143. /* Populate the descriptor encrypted section from the given service object.
  1144. * This will generate a valid list of introduction points that can be used
  1145. * after for circuit creation. Return 0 on success else -1 on error. */
  1146. static int
  1147. build_service_desc_encrypted(const hs_service_t *service,
  1148. hs_service_descriptor_t *desc)
  1149. {
  1150. hs_desc_encrypted_data_t *encrypted;
  1151. tor_assert(service);
  1152. tor_assert(desc);
  1153. encrypted = &desc->desc->encrypted_data;
  1154. encrypted->create2_ntor = 1;
  1155. encrypted->single_onion_service = service->config.is_single_onion;
  1156. /* Setup introduction points from what we have in the service. */
  1157. if (encrypted->intro_points == NULL) {
  1158. encrypted->intro_points = smartlist_new();
  1159. }
  1160. /* We do NOT build introduction point yet, we only do that once the circuit
  1161. * have been opened. Until we have the right number of introduction points,
  1162. * we do not encode anything in the descriptor. */
  1163. /* XXX: Support client authorization (#20700). */
  1164. encrypted->intro_auth_types = NULL;
  1165. return 0;
  1166. }
  1167. /* Populate the descriptor plaintext section from the given service object.
  1168. * The caller must make sure that the keys in the descriptors are valid that
  1169. * is are non-zero. Return 0 on success else -1 on error. */
  1170. static int
  1171. build_service_desc_plaintext(const hs_service_t *service,
  1172. hs_service_descriptor_t *desc, time_t now)
  1173. {
  1174. int ret = -1;
  1175. hs_desc_plaintext_data_t *plaintext;
  1176. tor_assert(service);
  1177. tor_assert(desc);
  1178. /* XXX: Use a "assert_desc_ok()" ? */
  1179. tor_assert(!tor_mem_is_zero((char *) &desc->blinded_kp,
  1180. sizeof(desc->blinded_kp)));
  1181. tor_assert(!tor_mem_is_zero((char *) &desc->signing_kp,
  1182. sizeof(desc->signing_kp)));
  1183. /* Set the subcredential. */
  1184. hs_get_subcredential(&service->keys.identity_pk, &desc->blinded_kp.pubkey,
  1185. desc->desc->subcredential);
  1186. plaintext = &desc->desc->plaintext_data;
  1187. plaintext->version = service->config.version;
  1188. plaintext->lifetime_sec = HS_DESC_DEFAULT_LIFETIME;
  1189. plaintext->signing_key_cert =
  1190. tor_cert_create(&desc->blinded_kp, CERT_TYPE_SIGNING_HS_DESC,
  1191. &desc->signing_kp.pubkey, now, HS_DESC_CERT_LIFETIME,
  1192. CERT_FLAG_INCLUDE_SIGNING_KEY);
  1193. if (plaintext->signing_key_cert == NULL) {
  1194. log_warn(LD_REND, "Unable to create descriptor signing certificate for "
  1195. "service %s",
  1196. safe_str_client(service->onion_address));
  1197. goto end;
  1198. }
  1199. /* Copy public key material to go in the descriptor. */
  1200. ed25519_pubkey_copy(&plaintext->signing_pubkey, &desc->signing_kp.pubkey);
  1201. ed25519_pubkey_copy(&plaintext->blinded_pubkey, &desc->blinded_kp.pubkey);
  1202. /* Success. */
  1203. ret = 0;
  1204. end:
  1205. return ret;
  1206. }
  1207. /* For the given service and descriptor object, create the key material which
  1208. * is the blinded keypair and the descriptor signing keypair. Return 0 on
  1209. * success else -1 on error where the generated keys MUST be ignored. */
  1210. static int
  1211. build_service_desc_keys(const hs_service_t *service,
  1212. hs_service_descriptor_t *desc,
  1213. uint64_t time_period_num)
  1214. {
  1215. int ret = 0;
  1216. ed25519_keypair_t kp;
  1217. tor_assert(desc);
  1218. tor_assert(!tor_mem_is_zero((char *) &service->keys.identity_pk,
  1219. ED25519_PUBKEY_LEN));
  1220. /* XXX: Support offline key feature (#18098). */
  1221. /* Copy the identity keys to the keypair so we can use it to create the
  1222. * blinded key. */
  1223. memcpy(&kp.pubkey, &service->keys.identity_pk, sizeof(kp.pubkey));
  1224. memcpy(&kp.seckey, &service->keys.identity_sk, sizeof(kp.seckey));
  1225. /* Build blinded keypair for this time period. */
  1226. hs_build_blinded_keypair(&kp, NULL, 0, time_period_num, &desc->blinded_kp);
  1227. /* Let's not keep too much traces of our keys in memory. */
  1228. memwipe(&kp, 0, sizeof(kp));
  1229. /* No need for extra strong, this is a temporary key only for this
  1230. * descriptor. Nothing long term. */
  1231. if (ed25519_keypair_generate(&desc->signing_kp, 0) < 0) {
  1232. log_warn(LD_REND, "Can't generate descriptor signing keypair for "
  1233. "service %s",
  1234. safe_str_client(service->onion_address));
  1235. ret = -1;
  1236. }
  1237. return ret;
  1238. }
  1239. /* Given a service and the current time, build a descriptor for the service.
  1240. * This function does not pick introduction point, this needs to be done by
  1241. * the update function. On success, desc_out will point to the newly allocated
  1242. * descriptor object.
  1243. *
  1244. * This can error if we are unable to create keys or certificate. */
  1245. static void
  1246. build_service_descriptor(hs_service_t *service, time_t now,
  1247. uint64_t time_period_num,
  1248. hs_service_descriptor_t **desc_out)
  1249. {
  1250. char *encoded_desc;
  1251. hs_service_descriptor_t *desc;
  1252. tor_assert(service);
  1253. tor_assert(desc_out);
  1254. desc = service_descriptor_new();
  1255. desc->time_period_num = time_period_num;
  1256. /* Create the needed keys so we can setup the descriptor content. */
  1257. if (build_service_desc_keys(service, desc, time_period_num) < 0) {
  1258. goto err;
  1259. }
  1260. /* Setup plaintext descriptor content. */
  1261. if (build_service_desc_plaintext(service, desc, now) < 0) {
  1262. goto err;
  1263. }
  1264. /* Setup encrypted descriptor content. */
  1265. if (build_service_desc_encrypted(service, desc) < 0) {
  1266. goto err;
  1267. }
  1268. /* Set the revision counter for this descriptor */
  1269. set_descriptor_revision_counter(desc->desc);
  1270. /* Let's make sure that we've created a descriptor that can actually be
  1271. * encoded properly. This function also checks if the encoded output is
  1272. * decodable after. */
  1273. if (BUG(hs_desc_encode_descriptor(desc->desc, &desc->signing_kp,
  1274. &encoded_desc) < 0)) {
  1275. goto err;
  1276. }
  1277. tor_free(encoded_desc);
  1278. /* Assign newly built descriptor to the next slot. */
  1279. *desc_out = desc;
  1280. /* Fire a CREATED control port event. */
  1281. hs_control_desc_event_created(service->onion_address,
  1282. &desc->blinded_kp.pubkey);
  1283. return;
  1284. err:
  1285. service_descriptor_free(desc);
  1286. }
  1287. /* Build both descriptors for the given service that has just booted up.
  1288. * Because it's a special case, it deserves its special function ;). */
  1289. static void
  1290. build_descriptors_for_new_service(hs_service_t *service, time_t now)
  1291. {
  1292. uint64_t current_desc_tp, next_desc_tp;
  1293. tor_assert(service);
  1294. /* These are the conditions for a new service. */
  1295. tor_assert(!service->desc_current);
  1296. tor_assert(!service->desc_next);
  1297. /*
  1298. * +------------------------------------------------------------------+
  1299. * | |
  1300. * | 00:00 12:00 00:00 12:00 00:00 12:00 |
  1301. * | SRV#1 TP#1 SRV#2 TP#2 SRV#3 TP#3 |
  1302. * | |
  1303. * | $==========|-----------$===========|-----------$===========| |
  1304. * | ^ ^ |
  1305. * | A B |
  1306. * +------------------------------------------------------------------+
  1307. *
  1308. * Case A: The service boots up before a new time period, the current time
  1309. * period is thus TP#1 and the next is TP#2 which for both we have access to
  1310. * their SRVs.
  1311. *
  1312. * Case B: The service boots up inside TP#2, we can't use the TP#3 for the
  1313. * next descriptor because we don't have the SRV#3 so the current should be
  1314. * TP#1 and next TP#2.
  1315. */
  1316. if (hs_in_period_between_tp_and_srv(NULL, now)) {
  1317. /* Case B from the above, inside of the new time period. */
  1318. current_desc_tp = hs_get_previous_time_period_num(0); /* TP#1 */
  1319. next_desc_tp = hs_get_time_period_num(0); /* TP#2 */
  1320. } else {
  1321. /* Case A from the above, outside of the new time period. */
  1322. current_desc_tp = hs_get_time_period_num(0); /* TP#1 */
  1323. next_desc_tp = hs_get_next_time_period_num(0); /* TP#2 */
  1324. }
  1325. /* Build descriptors. */
  1326. build_service_descriptor(service, now, current_desc_tp,
  1327. &service->desc_current);
  1328. build_service_descriptor(service, now, next_desc_tp,
  1329. &service->desc_next);
  1330. log_info(LD_REND, "Hidden service %s has just started. Both descriptors "
  1331. "built. Now scheduled for upload.",
  1332. safe_str_client(service->onion_address));
  1333. }
  1334. /* Build descriptors for each service if needed. There are conditions to build
  1335. * a descriptor which are details in the function. */
  1336. STATIC void
  1337. build_all_descriptors(time_t now)
  1338. {
  1339. FOR_EACH_SERVICE_BEGIN(service) {
  1340. /* A service booting up will have both descriptors to NULL. No other cases
  1341. * makes both descriptor non existent. */
  1342. if (service->desc_current == NULL && service->desc_next == NULL) {
  1343. build_descriptors_for_new_service(service, now);
  1344. continue;
  1345. }
  1346. /* Reaching this point means we are pass bootup so at runtime. We should
  1347. * *never* have an empty current descriptor. If the next descriptor is
  1348. * empty, we'll try to build it for the next time period. This only
  1349. * happens when we rotate meaning that we are guaranteed to have a new SRV
  1350. * at that point for the next time period. */
  1351. if (BUG(service->desc_current == NULL)) {
  1352. continue;
  1353. }
  1354. if (service->desc_next == NULL) {
  1355. build_service_descriptor(service, now, hs_get_next_time_period_num(0),
  1356. &service->desc_next);
  1357. log_info(LD_REND, "Hidden service %s next descriptor successfully "
  1358. "built. Now scheduled for upload.",
  1359. safe_str_client(service->onion_address));
  1360. }
  1361. } FOR_EACH_DESCRIPTOR_END;
  1362. }
  1363. /* Randomly pick a node to become an introduction point but not present in the
  1364. * given exclude_nodes list. The chosen node is put in the exclude list
  1365. * regardless of success or not because in case of failure, the node is simply
  1366. * unsusable from that point on.
  1367. *
  1368. * If direct_conn is set, try to pick a node that our local firewall/policy
  1369. * allows us to connect to directly. If we can't find any, return NULL.
  1370. * This function supports selecting dual-stack nodes for direct single onion
  1371. * service IPv6 connections. But it does not send IPv6 addresses in link
  1372. * specifiers. (Current clients don't use IPv6 addresses to extend, and
  1373. * direct client connections to intro points are not supported.)
  1374. *
  1375. * Return a newly allocated service intro point ready to be used for encoding.
  1376. * Return NULL on error. */
  1377. static hs_service_intro_point_t *
  1378. pick_intro_point(unsigned int direct_conn, smartlist_t *exclude_nodes)
  1379. {
  1380. const node_t *node;
  1381. extend_info_t *info = NULL;
  1382. hs_service_intro_point_t *ip = NULL;
  1383. /* Normal 3-hop introduction point flags. */
  1384. router_crn_flags_t flags = CRN_NEED_UPTIME | CRN_NEED_DESC;
  1385. /* Single onion flags. */
  1386. router_crn_flags_t direct_flags = flags | CRN_PREF_ADDR | CRN_DIRECT_CONN;
  1387. node = router_choose_random_node(exclude_nodes, get_options()->ExcludeNodes,
  1388. direct_conn ? direct_flags : flags);
  1389. /* Unable to find a node. When looking for a node for a direct connection,
  1390. * we could try a 3-hop path instead. We'll add support for this in a later
  1391. * release. */
  1392. if (!node) {
  1393. goto err;
  1394. }
  1395. /* We have a suitable node, add it to the exclude list. We do this *before*
  1396. * we can validate the extend information because even in case of failure,
  1397. * we don't want to use that node anymore. */
  1398. smartlist_add(exclude_nodes, (void *) node);
  1399. /* We do this to ease our life but also this call makes appropriate checks
  1400. * of the node object such as validating ntor support for instance.
  1401. *
  1402. * We must provide an extend_info for clients to connect over a 3-hop path,
  1403. * so we don't pass direct_conn here. */
  1404. info = extend_info_from_node(node, 0);
  1405. if (BUG(info == NULL)) {
  1406. goto err;
  1407. }
  1408. /* Let's do a basic sanity check here so that we don't end up advertising the
  1409. * ed25519 identity key of relays that don't actually support the link
  1410. * protocol */
  1411. if (!node_supports_ed25519_link_authentication(node, 0)) {
  1412. tor_assert_nonfatal(ed25519_public_key_is_zero(&info->ed_identity));
  1413. } else {
  1414. /* Make sure we *do* have an ed key if we support the link authentication.
  1415. * Sending an empty key would result in a failure to extend. */
  1416. tor_assert_nonfatal(!ed25519_public_key_is_zero(&info->ed_identity));
  1417. }
  1418. /* Create our objects and populate them with the node information. */
  1419. ip = service_intro_point_new(info, !node_supports_ed25519_hs_intro(node));
  1420. if (ip == NULL) {
  1421. goto err;
  1422. }
  1423. log_info(LD_REND, "Picked intro point: %s", extend_info_describe(info));
  1424. extend_info_free(info);
  1425. return ip;
  1426. err:
  1427. service_intro_point_free(ip);
  1428. extend_info_free(info);
  1429. return NULL;
  1430. }
  1431. /* For a given descriptor from the given service, pick any needed intro points
  1432. * and update the current map with those newly picked intro points. Return the
  1433. * number node that might have been added to the descriptor current map. */
  1434. static unsigned int
  1435. pick_needed_intro_points(hs_service_t *service,
  1436. hs_service_descriptor_t *desc)
  1437. {
  1438. int i = 0, num_needed_ip;
  1439. smartlist_t *exclude_nodes = smartlist_new();
  1440. tor_assert(service);
  1441. tor_assert(desc);
  1442. /* Compute how many intro points we actually need to open. */
  1443. num_needed_ip = service->config.num_intro_points -
  1444. digest256map_size(desc->intro_points.map);
  1445. if (BUG(num_needed_ip < 0)) {
  1446. /* Let's not make tor freak out here and just skip this. */
  1447. goto done;
  1448. }
  1449. /* We want to end up with config.num_intro_points intro points, but if we
  1450. * have no intro points at all (chances are they all cycled or we are
  1451. * starting up), we launch get_intro_point_num_extra() extra circuits and
  1452. * use the first config.num_intro_points that complete. See proposal #155,
  1453. * section 4 for the rationale of this which is purely for performance.
  1454. *
  1455. * The ones after the first config.num_intro_points will be converted to
  1456. * 'General' internal circuits and then we'll drop them from the list of
  1457. * intro points. */
  1458. if (digest256map_size(desc->intro_points.map) == 0) {
  1459. num_needed_ip += get_intro_point_num_extra();
  1460. }
  1461. /* Build an exclude list of nodes of our intro point(s). The expiring intro
  1462. * points are OK to pick again because this is afterall a concept of round
  1463. * robin so they are considered valid nodes to pick again. */
  1464. DIGEST256MAP_FOREACH(desc->intro_points.map, key,
  1465. hs_service_intro_point_t *, ip) {
  1466. const node_t *intro_node = get_node_from_intro_point(ip);
  1467. if (intro_node) {
  1468. smartlist_add(exclude_nodes, (void*)intro_node);
  1469. }
  1470. } DIGEST256MAP_FOREACH_END;
  1471. /* Also, add the failing intro points that our descriptor encounteered in
  1472. * the exclude node list. */
  1473. setup_intro_point_exclude_list(desc, exclude_nodes);
  1474. for (i = 0; i < num_needed_ip; i++) {
  1475. hs_service_intro_point_t *ip;
  1476. /* This function will add the picked intro point node to the exclude nodes
  1477. * list so we don't pick the same one at the next iteration. */
  1478. ip = pick_intro_point(service->config.is_single_onion, exclude_nodes);
  1479. if (ip == NULL) {
  1480. /* If we end up unable to pick an introduction point it is because we
  1481. * can't find suitable node and calling this again is highly unlikely to
  1482. * give us a valid node all of the sudden. */
  1483. log_info(LD_REND, "Unable to find a suitable node to be an "
  1484. "introduction point for service %s.",
  1485. safe_str_client(service->onion_address));
  1486. goto done;
  1487. }
  1488. /* Valid intro point object, add it to the descriptor current map. */
  1489. service_intro_point_add(desc->intro_points.map, ip);
  1490. }
  1491. /* We've successfully picked all our needed intro points thus none are
  1492. * missing which will tell our upload process to expect the number of
  1493. * circuits to be the number of configured intro points circuits and not the
  1494. * number of intro points object that we have. */
  1495. desc->missing_intro_points = 0;
  1496. /* Success. */
  1497. done:
  1498. /* We don't have ownership of the node_t object in this list. */
  1499. smartlist_free(exclude_nodes);
  1500. return i;
  1501. }
  1502. /** Clear previous cached HSDirs in <b>desc</b>. */
  1503. static void
  1504. service_desc_clear_previous_hsdirs(hs_service_descriptor_t *desc)
  1505. {
  1506. if (BUG(!desc->previous_hsdirs)) {
  1507. return;
  1508. }
  1509. SMARTLIST_FOREACH(desc->previous_hsdirs, char*, s, tor_free(s));
  1510. smartlist_clear(desc->previous_hsdirs);
  1511. }
  1512. /** Note that we attempted to upload <b>desc</b> to <b>hsdir</b>. */
  1513. static void
  1514. service_desc_note_upload(hs_service_descriptor_t *desc, const node_t *hsdir)
  1515. {
  1516. char b64_digest[BASE64_DIGEST_LEN+1] = {0};
  1517. digest_to_base64(b64_digest, hsdir->identity);
  1518. if (BUG(!desc->previous_hsdirs)) {
  1519. return;
  1520. }
  1521. if (!smartlist_contains_string(desc->previous_hsdirs, b64_digest)) {
  1522. smartlist_add_strdup(desc->previous_hsdirs, b64_digest);
  1523. }
  1524. }
  1525. /** Schedule an upload of <b>desc</b>. If <b>descriptor_changed</b> is set, it
  1526. * means that this descriptor is dirty. */
  1527. STATIC void
  1528. service_desc_schedule_upload(hs_service_descriptor_t *desc,
  1529. time_t now,
  1530. int descriptor_changed)
  1531. {
  1532. desc->next_upload_time = now;
  1533. /* If the descriptor changed, clean up the old HSDirs list. We want to
  1534. * re-upload no matter what. */
  1535. if (descriptor_changed) {
  1536. service_desc_clear_previous_hsdirs(desc);
  1537. }
  1538. }
  1539. /* Update the given descriptor from the given service. The possible update
  1540. * actions includes:
  1541. * - Picking missing intro points if needed.
  1542. * - Incrementing the revision counter if needed.
  1543. */
  1544. static void
  1545. update_service_descriptor(hs_service_t *service,
  1546. hs_service_descriptor_t *desc, time_t now)
  1547. {
  1548. unsigned int num_intro_points;
  1549. tor_assert(service);
  1550. tor_assert(desc);
  1551. tor_assert(desc->desc);
  1552. num_intro_points = digest256map_size(desc->intro_points.map);
  1553. /* Pick any missing introduction point(s). */
  1554. if (num_intro_points < service->config.num_intro_points) {
  1555. unsigned int num_new_intro_points = pick_needed_intro_points(service,
  1556. desc);
  1557. if (num_new_intro_points != 0) {
  1558. log_info(LD_REND, "Service %s just picked %u intro points and wanted "
  1559. "%u for %s descriptor. It currently has %d intro "
  1560. "points. Launching ESTABLISH_INTRO circuit shortly.",
  1561. safe_str_client(service->onion_address),
  1562. num_new_intro_points,
  1563. service->config.num_intro_points - num_intro_points,
  1564. (desc == service->desc_current) ? "current" : "next",
  1565. num_intro_points);
  1566. /* We'll build those introduction point into the descriptor once we have
  1567. * confirmation that the circuits are opened and ready. However,
  1568. * indicate that this descriptor should be uploaded from now on. */
  1569. service_desc_schedule_upload(desc, now, 1);
  1570. }
  1571. /* Were we able to pick all the intro points we needed? If not, we'll
  1572. * flag the descriptor that it's missing intro points because it
  1573. * couldn't pick enough which will trigger a descriptor upload. */
  1574. if ((num_new_intro_points + num_intro_points) <
  1575. service->config.num_intro_points) {
  1576. desc->missing_intro_points = 1;
  1577. }
  1578. }
  1579. }
  1580. /* Update descriptors for each service if needed. */
  1581. STATIC void
  1582. update_all_descriptors(time_t now)
  1583. {
  1584. FOR_EACH_SERVICE_BEGIN(service) {
  1585. /* We'll try to update each descriptor that is if certain conditions apply
  1586. * in order for the descriptor to be updated. */
  1587. FOR_EACH_DESCRIPTOR_BEGIN(service, desc) {
  1588. update_service_descriptor(service, desc, now);
  1589. } FOR_EACH_DESCRIPTOR_END;
  1590. } FOR_EACH_SERVICE_END;
  1591. }
  1592. /* Return true iff the given intro point has expired that is it has been used
  1593. * for too long or we've reached our max seen INTRODUCE2 cell. */
  1594. STATIC int
  1595. intro_point_should_expire(const hs_service_intro_point_t *ip,
  1596. time_t now)
  1597. {
  1598. tor_assert(ip);
  1599. if (ip->introduce2_count >= ip->introduce2_max) {
  1600. goto expired;
  1601. }
  1602. if (ip->time_to_expire <= now) {
  1603. goto expired;
  1604. }
  1605. /* Not expiring. */
  1606. return 0;
  1607. expired:
  1608. return 1;
  1609. }
  1610. /* Go over the given set of intro points for each service and remove any
  1611. * invalid ones. The conditions for removal are:
  1612. *
  1613. * - The node doesn't exists anymore (not in consensus)
  1614. * OR
  1615. * - The intro point maximum circuit retry count has been reached and no
  1616. * circuit can be found associated with it.
  1617. * OR
  1618. * - The intro point has expired and we should pick a new one.
  1619. *
  1620. * If an intro point is removed, the circuit (if any) is immediately close.
  1621. * If a circuit can't be found, the intro point is kept if it hasn't reached
  1622. * its maximum circuit retry value and thus should be retried. */
  1623. static void
  1624. cleanup_intro_points(hs_service_t *service, time_t now)
  1625. {
  1626. /* List of intro points to close. We can't mark the intro circuits for close
  1627. * in the modify loop because doing so calls
  1628. * hs_service_intro_circ_has_closed() which does a digest256map_get() on the
  1629. * intro points map (that we are iterating over). This can't be done in a
  1630. * single iteration after a MAP_DEL_CURRENT, the object will still be
  1631. * returned leading to a use-after-free. So, we close the circuits and free
  1632. * the intro points after the loop if any. */
  1633. smartlist_t *ips_to_free = smartlist_new();
  1634. tor_assert(service);
  1635. /* For both descriptors, cleanup the intro points. */
  1636. FOR_EACH_DESCRIPTOR_BEGIN(service, desc) {
  1637. /* Go over the current intro points we have, make sure they are still
  1638. * valid and remove any of them that aren't. */
  1639. DIGEST256MAP_FOREACH_MODIFY(desc->intro_points.map, key,
  1640. hs_service_intro_point_t *, ip) {
  1641. const node_t *node = get_node_from_intro_point(ip);
  1642. int has_expired = intro_point_should_expire(ip, now);
  1643. /* We cleanup an intro point if it has expired or if we do not know the
  1644. * node_t anymore (removed from our latest consensus) or if we've
  1645. * reached the maximum number of retry with a non existing circuit. */
  1646. if (has_expired || node == NULL ||
  1647. ip->circuit_retries > MAX_INTRO_POINT_CIRCUIT_RETRIES) {
  1648. log_info(LD_REND, "Intro point %s%s (retried: %u times). "
  1649. "Removing it.",
  1650. describe_intro_point(ip),
  1651. has_expired ? " has expired" :
  1652. (node == NULL) ? " fell off the consensus" : "",
  1653. ip->circuit_retries);
  1654. /* We've retried too many times, remember it as a failed intro point
  1655. * so we don't pick it up again for INTRO_CIRC_RETRY_PERIOD sec. */
  1656. if (ip->circuit_retries > MAX_INTRO_POINT_CIRCUIT_RETRIES) {
  1657. remember_failing_intro_point(ip, desc, approx_time());
  1658. }
  1659. /* Remove intro point from descriptor map and add it to the list of
  1660. * ips to free for which we'll also try to close the intro circuit. */
  1661. MAP_DEL_CURRENT(key);
  1662. smartlist_add(ips_to_free, ip);
  1663. }
  1664. } DIGEST256MAP_FOREACH_END;
  1665. } FOR_EACH_DESCRIPTOR_END;
  1666. /* Go over the intro points to free and close their circuit if any. */
  1667. SMARTLIST_FOREACH_BEGIN(ips_to_free, hs_service_intro_point_t *, ip) {
  1668. /* See if we need to close the intro point circuit as well */
  1669. /* XXX: Legacy code does NOT close circuits like this: it keeps the circuit
  1670. * open until a new descriptor is uploaded and then closed all expiring
  1671. * intro point circuit. Here, we close immediately and because we just
  1672. * discarded the intro point, a new one will be selected, a new descriptor
  1673. * created and uploaded. There is no difference to an attacker between the
  1674. * timing of a new consensus and intro point rotation (possibly?). */
  1675. origin_circuit_t *ocirc = hs_circ_service_get_intro_circ(ip);
  1676. if (ocirc && !TO_CIRCUIT(ocirc)->marked_for_close) {
  1677. circuit_mark_for_close(TO_CIRCUIT(ocirc), END_CIRC_REASON_FINISHED);
  1678. }
  1679. /* Cleanup the intro point */
  1680. service_intro_point_free(ip);
  1681. } SMARTLIST_FOREACH_END(ip);
  1682. smartlist_free(ips_to_free);
  1683. }
  1684. /* Set the next rotation time of the descriptors for the given service for the
  1685. * time now. */
  1686. static void
  1687. set_rotation_time(hs_service_t *service, time_t now)
  1688. {
  1689. time_t valid_after;
  1690. const networkstatus_t *ns = networkstatus_get_live_consensus(now);
  1691. if (ns) {
  1692. valid_after = ns->valid_after;
  1693. } else {
  1694. valid_after = now;
  1695. }
  1696. tor_assert(service);
  1697. service->state.next_rotation_time =
  1698. sr_state_get_start_time_of_current_protocol_run(valid_after) +
  1699. sr_state_get_protocol_run_duration();
  1700. {
  1701. char fmt_time[ISO_TIME_LEN + 1];
  1702. format_local_iso_time(fmt_time, service->state.next_rotation_time);
  1703. log_info(LD_REND, "Next descriptor rotation time set to %s for %s",
  1704. fmt_time, safe_str_client(service->onion_address));
  1705. }
  1706. }
  1707. /* Return true iff the service should rotate its descriptor. The time now is
  1708. * only used to fetch the live consensus and if none can be found, this
  1709. * returns false. */
  1710. static unsigned int
  1711. should_rotate_descriptors(hs_service_t *service, time_t now)
  1712. {
  1713. const networkstatus_t *ns;
  1714. tor_assert(service);
  1715. ns = networkstatus_get_live_consensus(now);
  1716. if (ns == NULL) {
  1717. goto no_rotation;
  1718. }
  1719. if (ns->valid_after >= service->state.next_rotation_time) {
  1720. /* In theory, we should never get here with no descriptors. We can never
  1721. * have a NULL current descriptor except when tor starts up. The next
  1722. * descriptor can be NULL after a rotation but we build a new one right
  1723. * after.
  1724. *
  1725. * So, when tor starts, the next rotation time is set to the start of the
  1726. * next SRV period using the consensus valid after time so it should
  1727. * always be set to a future time value. This means that we should never
  1728. * reach this point at bootup that is this check safeguards tor in never
  1729. * allowing a rotation if the valid after time is smaller than the next
  1730. * rotation time.
  1731. *
  1732. * This is all good in theory but we've had a NULL descriptor issue here
  1733. * so this is why we BUG() on both with extra logging to try to understand
  1734. * how this can possibly happens. We'll simply ignore and tor should
  1735. * recover from this by skipping rotation and building the missing
  1736. * descriptors just after this. */
  1737. if (BUG(service->desc_current == NULL || service->desc_next == NULL)) {
  1738. log_warn(LD_BUG, "Service descriptor is NULL (%p/%p). Next rotation "
  1739. "time is %ld (now: %ld). Valid after time from "
  1740. "consensus is %ld",
  1741. service->desc_current, service->desc_next,
  1742. (long)service->state.next_rotation_time,
  1743. (long)now,
  1744. (long)ns->valid_after);
  1745. goto no_rotation;
  1746. }
  1747. goto rotation;
  1748. }
  1749. no_rotation:
  1750. return 0;
  1751. rotation:
  1752. return 1;
  1753. }
  1754. /* Rotate the service descriptors of the given service. The current descriptor
  1755. * will be freed, the next one put in as the current and finally the next
  1756. * descriptor pointer is NULLified. */
  1757. static void
  1758. rotate_service_descriptors(hs_service_t *service, time_t now)
  1759. {
  1760. if (service->desc_current) {
  1761. /* Close all IP circuits for the descriptor. */
  1762. close_intro_circuits(&service->desc_current->intro_points);
  1763. /* We don't need this one anymore, we won't serve any clients coming with
  1764. * this service descriptor. */
  1765. service_descriptor_free(service->desc_current);
  1766. }
  1767. /* The next one become the current one and emptying the next will trigger
  1768. * a descriptor creation for it. */
  1769. service->desc_current = service->desc_next;
  1770. service->desc_next = NULL;
  1771. /* We've just rotated, set the next time for the rotation. */
  1772. set_rotation_time(service, now);
  1773. }
  1774. /* Rotate descriptors for each service if needed. A non existing current
  1775. * descriptor will trigger a descriptor build for the next time period. */
  1776. STATIC void
  1777. rotate_all_descriptors(time_t now)
  1778. {
  1779. /* XXX We rotate all our service descriptors at once. In the future it might
  1780. * be wise, to rotate service descriptors independently to hide that all
  1781. * those descriptors are on the same tor instance */
  1782. FOR_EACH_SERVICE_BEGIN(service) {
  1783. /* Note for a service booting up: Both descriptors are NULL in that case
  1784. * so this function might return true if we are in the timeframe for a
  1785. * rotation leading to basically swapping two NULL pointers which is
  1786. * harmless. However, the side effect is that triggering a rotation will
  1787. * update the service state and avoid doing anymore rotations after the
  1788. * two descriptors have been built. */
  1789. if (!should_rotate_descriptors(service, now)) {
  1790. continue;
  1791. }
  1792. log_info(LD_REND, "Time to rotate our descriptors (%p / %p) for %s",
  1793. service->desc_current, service->desc_next,
  1794. safe_str_client(service->onion_address));
  1795. rotate_service_descriptors(service, now);
  1796. } FOR_EACH_SERVICE_END;
  1797. }
  1798. /* Scheduled event run from the main loop. Make sure all our services are up
  1799. * to date and ready for the other scheduled events. This includes looking at
  1800. * the introduction points status and descriptor rotation time. */
  1801. STATIC void
  1802. run_housekeeping_event(time_t now)
  1803. {
  1804. /* Note that nothing here opens circuit(s) nor uploads descriptor(s). We are
  1805. * simply moving things around or removing unneeded elements. */
  1806. FOR_EACH_SERVICE_BEGIN(service) {
  1807. /* If the service is starting off, set the rotation time. We can't do that
  1808. * at configure time because the get_options() needs to be set for setting
  1809. * that time that uses the voting interval. */
  1810. if (service->state.next_rotation_time == 0) {
  1811. /* Set the next rotation time of the descriptors. If it's Oct 25th
  1812. * 23:47:00, the next rotation time is when the next SRV is computed
  1813. * which is at Oct 26th 00:00:00 that is in 13 minutes. */
  1814. set_rotation_time(service, now);
  1815. }
  1816. /* Cleanup invalid intro points from the service descriptor. */
  1817. cleanup_intro_points(service, now);
  1818. /* Remove expired failing intro point from the descriptor failed list. We
  1819. * reset them at each INTRO_CIRC_RETRY_PERIOD. */
  1820. remove_expired_failing_intro(service, now);
  1821. /* At this point, the service is now ready to go through the scheduled
  1822. * events guaranteeing a valid state. Intro points might be missing from
  1823. * the descriptors after the cleanup but the update/build process will
  1824. * make sure we pick those missing ones. */
  1825. } FOR_EACH_SERVICE_END;
  1826. }
  1827. /* Scheduled event run from the main loop. Make sure all descriptors are up to
  1828. * date. Once this returns, each service descriptor needs to be considered for
  1829. * new introduction circuits and then for upload. */
  1830. static void
  1831. run_build_descriptor_event(time_t now)
  1832. {
  1833. /* For v2 services, this step happens in the upload event. */
  1834. /* Run v3+ events. */
  1835. /* We start by rotating the descriptors only if needed. */
  1836. rotate_all_descriptors(now);
  1837. /* Then, we'll try to build new descriptors that we might need. The
  1838. * condition is that the next descriptor is non existing because it has
  1839. * been rotated or we just started up. */
  1840. build_all_descriptors(now);
  1841. /* Finally, we'll check if we should update the descriptors. Missing
  1842. * introduction points will be picked in this function which is useful for
  1843. * newly built descriptors. */
  1844. update_all_descriptors(now);
  1845. }
  1846. /* For the given service, launch any intro point circuits that could be
  1847. * needed. This considers every descriptor of the service. */
  1848. static void
  1849. launch_intro_point_circuits(hs_service_t *service)
  1850. {
  1851. tor_assert(service);
  1852. /* For both descriptors, try to launch any missing introduction point
  1853. * circuits using the current map. */
  1854. FOR_EACH_DESCRIPTOR_BEGIN(service, desc) {
  1855. /* Keep a ref on if we need a direct connection. We use this often. */
  1856. unsigned int direct_conn = service->config.is_single_onion;
  1857. DIGEST256MAP_FOREACH_MODIFY(desc->intro_points.map, key,
  1858. hs_service_intro_point_t *, ip) {
  1859. extend_info_t *ei;
  1860. /* Skip the intro point that already has an existing circuit
  1861. * (established or not). */
  1862. if (hs_circ_service_get_intro_circ(ip)) {
  1863. continue;
  1864. }
  1865. ei = get_extend_info_from_intro_point(ip, direct_conn);
  1866. if (ei == NULL) {
  1867. /* This is possible if we can get a node_t but not the extend info out
  1868. * of it. In this case, we remove the intro point and a new one will
  1869. * be picked at the next main loop callback. */
  1870. MAP_DEL_CURRENT(key);
  1871. service_intro_point_free(ip);
  1872. continue;
  1873. }
  1874. /* Launch a circuit to the intro point. */
  1875. ip->circuit_retries++;
  1876. if (hs_circ_launch_intro_point(service, ip, ei) < 0) {
  1877. log_info(LD_REND, "Unable to launch intro circuit to node %s "
  1878. "for service %s.",
  1879. safe_str_client(extend_info_describe(ei)),
  1880. safe_str_client(service->onion_address));
  1881. /* Intro point will be retried if possible after this. */
  1882. }
  1883. extend_info_free(ei);
  1884. } DIGEST256MAP_FOREACH_END;
  1885. } FOR_EACH_DESCRIPTOR_END;
  1886. }
  1887. /* Don't try to build more than this many circuits before giving up for a
  1888. * while. Dynamically calculated based on the configured number of intro
  1889. * points for the given service and how many descriptor exists. The default
  1890. * use case of 3 introduction points and two descriptors will allow 28
  1891. * circuits for a retry period (((3 + 2) + (3 * 3)) * 2). */
  1892. static unsigned int
  1893. get_max_intro_circ_per_period(const hs_service_t *service)
  1894. {
  1895. unsigned int count = 0;
  1896. unsigned int multiplier = 0;
  1897. unsigned int num_wanted_ip;
  1898. tor_assert(service);
  1899. tor_assert(service->config.num_intro_points <=
  1900. HS_CONFIG_V3_MAX_INTRO_POINTS);
  1901. /* For a testing network, allow to do it for the maximum amount so circuit
  1902. * creation and rotation and so on can actually be tested without limit. */
  1903. #define MAX_INTRO_POINT_CIRCUIT_RETRIES_TESTING -1
  1904. if (get_options()->TestingTorNetwork) {
  1905. return MAX_INTRO_POINT_CIRCUIT_RETRIES_TESTING;
  1906. }
  1907. num_wanted_ip = service->config.num_intro_points;
  1908. /* The calculation is as follow. We have a number of intro points that we
  1909. * want configured as a torrc option (num_intro_points). We then add an
  1910. * extra value so we can launch multiple circuits at once and pick the
  1911. * quickest ones. For instance, we want 3 intros, we add 2 extra so we'll
  1912. * pick 5 intros and launch 5 circuits. */
  1913. count += (num_wanted_ip + get_intro_point_num_extra());
  1914. /* Then we add the number of retries that is possible to do for each intro
  1915. * point. If we want 3 intros, we'll allow 3 times the number of possible
  1916. * retry. */
  1917. count += (num_wanted_ip * MAX_INTRO_POINT_CIRCUIT_RETRIES);
  1918. /* Then, we multiply by a factor of 2 if we have both descriptor or 0 if we
  1919. * have none. */
  1920. multiplier += (service->desc_current) ? 1 : 0;
  1921. multiplier += (service->desc_next) ? 1 : 0;
  1922. return (count * multiplier);
  1923. }
  1924. /* For the given service, return 1 if the service is allowed to launch more
  1925. * introduction circuits else 0 if the maximum has been reached for the retry
  1926. * period of INTRO_CIRC_RETRY_PERIOD. */
  1927. STATIC int
  1928. can_service_launch_intro_circuit(hs_service_t *service, time_t now)
  1929. {
  1930. tor_assert(service);
  1931. /* Consider the intro circuit retry period of the service. */
  1932. if (now > (service->state.intro_circ_retry_started_time +
  1933. INTRO_CIRC_RETRY_PERIOD)) {
  1934. service->state.intro_circ_retry_started_time = now;
  1935. service->state.num_intro_circ_launched = 0;
  1936. goto allow;
  1937. }
  1938. /* Check if we can still launch more circuits in this period. */
  1939. if (service->state.num_intro_circ_launched <=
  1940. get_max_intro_circ_per_period(service)) {
  1941. goto allow;
  1942. }
  1943. /* Rate limit log that we've reached our circuit creation limit. */
  1944. {
  1945. char *msg;
  1946. time_t elapsed_time = now - service->state.intro_circ_retry_started_time;
  1947. static ratelim_t rlimit = RATELIM_INIT(INTRO_CIRC_RETRY_PERIOD);
  1948. if ((msg = rate_limit_log(&rlimit, now))) {
  1949. log_info(LD_REND, "Hidden service %s exceeded its circuit launch limit "
  1950. "of %u per %d seconds. It launched %u circuits in "
  1951. "the last %ld seconds. Will retry in %ld seconds.",
  1952. safe_str_client(service->onion_address),
  1953. get_max_intro_circ_per_period(service),
  1954. INTRO_CIRC_RETRY_PERIOD,
  1955. service->state.num_intro_circ_launched,
  1956. (long int) elapsed_time,
  1957. (long int) (INTRO_CIRC_RETRY_PERIOD - elapsed_time));
  1958. tor_free(msg);
  1959. }
  1960. }
  1961. /* Not allow. */
  1962. return 0;
  1963. allow:
  1964. return 1;
  1965. }
  1966. /* Scheduled event run from the main loop. Make sure we have all the circuits
  1967. * we need for each service. */
  1968. static void
  1969. run_build_circuit_event(time_t now)
  1970. {
  1971. /* Make sure we can actually have enough information or able to build
  1972. * internal circuits as required by services. */
  1973. if (router_have_consensus_path() == CONSENSUS_PATH_UNKNOWN ||
  1974. !have_completed_a_circuit()) {
  1975. return;
  1976. }
  1977. /* Run v2 check. */
  1978. if (rend_num_services() > 0) {
  1979. rend_consider_services_intro_points(now);
  1980. }
  1981. /* Run v3+ check. */
  1982. FOR_EACH_SERVICE_BEGIN(service) {
  1983. /* For introduction circuit, we need to make sure we don't stress too much
  1984. * circuit creation so make sure this service is respecting that limit. */
  1985. if (can_service_launch_intro_circuit(service, now)) {
  1986. /* Launch intro point circuits if needed. */
  1987. launch_intro_point_circuits(service);
  1988. /* Once the circuits have opened, we'll make sure to update the
  1989. * descriptor intro point list and cleanup any extraneous. */
  1990. }
  1991. } FOR_EACH_SERVICE_END;
  1992. }
  1993. /* Encode and sign the service descriptor desc and upload it to the given
  1994. * hidden service directory. This does nothing if PublishHidServDescriptors
  1995. * is false. */
  1996. static void
  1997. upload_descriptor_to_hsdir(const hs_service_t *service,
  1998. hs_service_descriptor_t *desc, const node_t *hsdir)
  1999. {
  2000. char *encoded_desc = NULL;
  2001. tor_assert(service);
  2002. tor_assert(desc);
  2003. tor_assert(hsdir);
  2004. /* Let's avoid doing that if tor is configured to not publish. */
  2005. if (!get_options()->PublishHidServDescriptors) {
  2006. log_info(LD_REND, "Service %s not publishing descriptor. "
  2007. "PublishHidServDescriptors is set to 1.",
  2008. safe_str_client(service->onion_address));
  2009. goto end;
  2010. }
  2011. /* First of all, we'll encode the descriptor. This should NEVER fail but
  2012. * just in case, let's make sure we have an actual usable descriptor. */
  2013. if (BUG(hs_desc_encode_descriptor(desc->desc, &desc->signing_kp,
  2014. &encoded_desc) < 0)) {
  2015. goto end;
  2016. }
  2017. /* Time to upload the descriptor to the directory. */
  2018. hs_service_upload_desc_to_dir(encoded_desc, service->config.version,
  2019. &service->keys.identity_pk,
  2020. &desc->blinded_kp.pubkey, hsdir->rs);
  2021. /* Add this node to previous_hsdirs list */
  2022. service_desc_note_upload(desc, hsdir);
  2023. /* Logging so we know where it was sent. */
  2024. {
  2025. int is_next_desc = (service->desc_next == desc);
  2026. const uint8_t *idx = (is_next_desc) ? hsdir->hsdir_index.store_second:
  2027. hsdir->hsdir_index.store_first;
  2028. log_info(LD_REND, "Service %s %s descriptor of revision %" PRIu64
  2029. " initiated upload request to %s with index %s",
  2030. safe_str_client(service->onion_address),
  2031. (is_next_desc) ? "next" : "current",
  2032. desc->desc->plaintext_data.revision_counter,
  2033. safe_str_client(node_describe(hsdir)),
  2034. safe_str_client(hex_str((const char *) idx, 32)));
  2035. /* Fire a UPLOAD control port event. */
  2036. hs_control_desc_event_upload(service->onion_address, hsdir->identity,
  2037. &desc->blinded_kp.pubkey, idx);
  2038. }
  2039. end:
  2040. tor_free(encoded_desc);
  2041. return;
  2042. }
  2043. /** Return a newly-allocated string for our state file which contains revision
  2044. * counter information for <b>desc</b>. The format is:
  2045. *
  2046. * HidServRevCounter <blinded_pubkey> <rev_counter>
  2047. */
  2048. STATIC char *
  2049. encode_desc_rev_counter_for_state(const hs_service_descriptor_t *desc)
  2050. {
  2051. char *state_str = NULL;
  2052. char blinded_pubkey_b64[ED25519_BASE64_LEN+1];
  2053. uint64_t rev_counter = desc->desc->plaintext_data.revision_counter;
  2054. const ed25519_public_key_t *blinded_pubkey = &desc->blinded_kp.pubkey;
  2055. /* Turn the blinded key into b64 so that we save it on state */
  2056. tor_assert(blinded_pubkey);
  2057. if (ed25519_public_to_base64(blinded_pubkey_b64, blinded_pubkey) < 0) {
  2058. goto done;
  2059. }
  2060. /* Format is: <blinded key> <rev counter> */
  2061. tor_asprintf(&state_str, "%s %" PRIu64, blinded_pubkey_b64, rev_counter);
  2062. log_info(LD_GENERAL, "[!] Adding rev counter %" PRIu64 " for %s!",
  2063. rev_counter, blinded_pubkey_b64);
  2064. done:
  2065. return state_str;
  2066. }
  2067. /** Update HS descriptor revision counters in our state by removing the old
  2068. * ones and writing down the ones that are currently active. */
  2069. static void
  2070. update_revision_counters_in_state(void)
  2071. {
  2072. config_line_t *lines = NULL;
  2073. config_line_t **nextline = &lines;
  2074. or_state_t *state = get_or_state();
  2075. /* Prepare our state structure with the rev counters */
  2076. FOR_EACH_SERVICE_BEGIN(service) {
  2077. FOR_EACH_DESCRIPTOR_BEGIN(service, desc) {
  2078. /* We don't want to save zero counters */
  2079. if (desc->desc->plaintext_data.revision_counter == 0) {
  2080. continue;
  2081. }
  2082. *nextline = tor_malloc_zero(sizeof(config_line_t));
  2083. (*nextline)->key = tor_strdup("HidServRevCounter");
  2084. (*nextline)->value = encode_desc_rev_counter_for_state(desc);
  2085. nextline = &(*nextline)->next;
  2086. } FOR_EACH_DESCRIPTOR_END;
  2087. } FOR_EACH_SERVICE_END;
  2088. /* Remove the old rev counters, and replace them with the new ones */
  2089. config_free_lines(state->HidServRevCounter);
  2090. state->HidServRevCounter = lines;
  2091. /* Set the state as dirty since we just edited it */
  2092. if (!get_options()->AvoidDiskWrites) {
  2093. or_state_mark_dirty(state, 0);
  2094. }
  2095. }
  2096. /** Scan the string <b>state_line</b> for the revision counter of the service
  2097. * with <b>blinded_pubkey</b>. Set <b>service_found_out</b> to True if the
  2098. * line is relevant to this service, and return the cached revision
  2099. * counter. Else set <b>service_found_out</b> to False. */
  2100. STATIC uint64_t
  2101. check_state_line_for_service_rev_counter(const char *state_line,
  2102. const ed25519_public_key_t *blinded_pubkey,
  2103. int *service_found_out)
  2104. {
  2105. smartlist_t *items = NULL;
  2106. int ok;
  2107. ed25519_public_key_t pubkey_in_state;
  2108. uint64_t rev_counter = 0;
  2109. tor_assert(service_found_out);
  2110. tor_assert(state_line);
  2111. tor_assert(blinded_pubkey);
  2112. /* Assume that the line is not for this service */
  2113. *service_found_out = 0;
  2114. /* Start parsing the state line */
  2115. items = smartlist_new();
  2116. smartlist_split_string(items, state_line, NULL,
  2117. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, -1);
  2118. if (smartlist_len(items) < 2) {
  2119. log_warn(LD_GENERAL, "Incomplete rev counter line. Ignoring.");
  2120. goto done;
  2121. }
  2122. char *b64_key_str = smartlist_get(items, 0);
  2123. char *saved_rev_counter_str = smartlist_get(items, 1);
  2124. /* Parse blinded key to check if it's for this hidden service */
  2125. if (ed25519_public_from_base64(&pubkey_in_state, b64_key_str) < 0) {
  2126. log_warn(LD_GENERAL, "Unable to base64 key in revcount line. Ignoring.");
  2127. goto done;
  2128. }
  2129. /* State line not for this hidden service */
  2130. if (!ed25519_pubkey_eq(&pubkey_in_state, blinded_pubkey)) {
  2131. goto done;
  2132. }
  2133. rev_counter = tor_parse_uint64(saved_rev_counter_str,
  2134. 10, 0, UINT64_MAX, &ok, NULL);
  2135. if (!ok) {
  2136. log_warn(LD_GENERAL, "Unable to parse rev counter. Ignoring.");
  2137. goto done;
  2138. }
  2139. /* Since we got this far, the line was for this service */
  2140. *service_found_out = 1;
  2141. log_info(LD_GENERAL, "Found rev counter for %s: %" PRIu64,
  2142. b64_key_str, rev_counter);
  2143. done:
  2144. tor_assert(items);
  2145. SMARTLIST_FOREACH(items, char*, s, tor_free(s));
  2146. smartlist_free(items);
  2147. return rev_counter;
  2148. }
  2149. /** Dig into our state file and find the current revision counter for the
  2150. * service with blinded key <b>blinded_pubkey</b>. If no revision counter is
  2151. * found, return 0. */
  2152. static uint64_t
  2153. get_rev_counter_for_service(const ed25519_public_key_t *blinded_pubkey)
  2154. {
  2155. or_state_t *state = get_or_state();
  2156. config_line_t *line;
  2157. /* Set default value for rev counters (if not found) to 0 */
  2158. uint64_t final_rev_counter = 0;
  2159. for (line = state->HidServRevCounter ; line ; line = line->next) {
  2160. int service_found = 0;
  2161. uint64_t rev_counter = 0;
  2162. tor_assert(!strcmp(line->key, "HidServRevCounter"));
  2163. /* Scan all the HidServRevCounter lines till we find the line for this
  2164. service: */
  2165. rev_counter = check_state_line_for_service_rev_counter(line->value,
  2166. blinded_pubkey,
  2167. &service_found);
  2168. if (service_found) {
  2169. final_rev_counter = rev_counter;
  2170. goto done;
  2171. }
  2172. }
  2173. done:
  2174. return final_rev_counter;
  2175. }
  2176. /** Update the value of the revision counter for <b>hs_desc</b> and save it on
  2177. our state file. */
  2178. static void
  2179. increment_descriptor_revision_counter(hs_descriptor_t *hs_desc)
  2180. {
  2181. /* Find stored rev counter if it exists */
  2182. uint64_t rev_counter =
  2183. get_rev_counter_for_service(&hs_desc->plaintext_data.blinded_pubkey);
  2184. /* Increment the revision counter of <b>hs_desc</b> so the next update (which
  2185. * will trigger an upload) will have the right value. We do this at this
  2186. * stage to only do it once because a descriptor can have many updates before
  2187. * being uploaded. By doing it at upload, we are sure to only increment by 1
  2188. * and thus avoid leaking how many operations we made on the descriptor from
  2189. * the previous one before uploading. */
  2190. rev_counter++;
  2191. hs_desc->plaintext_data.revision_counter = rev_counter;
  2192. update_revision_counters_in_state();
  2193. }
  2194. /** Set the revision counter in <b>hs_desc</b>, using the state file to find
  2195. * the current counter value if it exists. */
  2196. static void
  2197. set_descriptor_revision_counter(hs_descriptor_t *hs_desc)
  2198. {
  2199. /* Find stored rev counter if it exists */
  2200. uint64_t rev_counter =
  2201. get_rev_counter_for_service(&hs_desc->plaintext_data.blinded_pubkey);
  2202. hs_desc->plaintext_data.revision_counter = rev_counter;
  2203. }
  2204. /* Encode and sign the service descriptor desc and upload it to the
  2205. * responsible hidden service directories. If for_next_period is true, the set
  2206. * of directories are selected using the next hsdir_index. This does nothing
  2207. * if PublishHidServDescriptors is false. */
  2208. STATIC void
  2209. upload_descriptor_to_all(const hs_service_t *service,
  2210. hs_service_descriptor_t *desc)
  2211. {
  2212. smartlist_t *responsible_dirs = NULL;
  2213. tor_assert(service);
  2214. tor_assert(desc);
  2215. /* We'll first cancel any directory request that are ongoing for this
  2216. * descriptor. It is possible that we can trigger multiple uploads in a
  2217. * short time frame which can lead to a race where the second upload arrives
  2218. * before the first one leading to a 400 malformed descriptor response from
  2219. * the directory. Closing all pending requests avoids that. */
  2220. close_directory_connections(service, desc);
  2221. /* Get our list of responsible HSDir. */
  2222. responsible_dirs = smartlist_new();
  2223. /* The parameter 0 means that we aren't a client so tell the function to use
  2224. * the spread store consensus paremeter. */
  2225. hs_get_responsible_hsdirs(&desc->blinded_kp.pubkey, desc->time_period_num,
  2226. service->desc_next == desc, 0, responsible_dirs);
  2227. /** Clear list of previous hsdirs since we are about to upload to a new
  2228. * list. Let's keep it up to date. */
  2229. service_desc_clear_previous_hsdirs(desc);
  2230. /* For each responsible HSDir we have, initiate an upload command. */
  2231. SMARTLIST_FOREACH_BEGIN(responsible_dirs, const routerstatus_t *,
  2232. hsdir_rs) {
  2233. const node_t *hsdir_node = node_get_by_id(hsdir_rs->identity_digest);
  2234. /* Getting responsible hsdir implies that the node_t object exists for the
  2235. * routerstatus_t found in the consensus else we have a problem. */
  2236. tor_assert(hsdir_node);
  2237. /* Upload this descriptor to the chosen directory. */
  2238. upload_descriptor_to_hsdir(service, desc, hsdir_node);
  2239. } SMARTLIST_FOREACH_END(hsdir_rs);
  2240. /* Set the next upload time for this descriptor. Even if we are configured
  2241. * to not upload, we still want to follow the right cycle of life for this
  2242. * descriptor. */
  2243. desc->next_upload_time =
  2244. (time(NULL) + crypto_rand_int_range(HS_SERVICE_NEXT_UPLOAD_TIME_MIN,
  2245. HS_SERVICE_NEXT_UPLOAD_TIME_MAX));
  2246. {
  2247. char fmt_next_time[ISO_TIME_LEN+1];
  2248. format_local_iso_time(fmt_next_time, desc->next_upload_time);
  2249. log_debug(LD_REND, "Service %s set to upload a descriptor at %s",
  2250. safe_str_client(service->onion_address), fmt_next_time);
  2251. }
  2252. /* Update the revision counter of this descriptor */
  2253. increment_descriptor_revision_counter(desc->desc);
  2254. smartlist_free(responsible_dirs);
  2255. return;
  2256. }
  2257. /** The set of HSDirs have changed: check if the change affects our descriptor
  2258. * HSDir placement, and if it does, reupload the desc. */
  2259. STATIC int
  2260. service_desc_hsdirs_changed(const hs_service_t *service,
  2261. const hs_service_descriptor_t *desc)
  2262. {
  2263. int should_reupload = 0;
  2264. smartlist_t *responsible_dirs = smartlist_new();
  2265. /* No desc upload has happened yet: it will happen eventually */
  2266. if (!desc->previous_hsdirs || !smartlist_len(desc->previous_hsdirs)) {
  2267. goto done;
  2268. }
  2269. /* Get list of responsible hsdirs */
  2270. hs_get_responsible_hsdirs(&desc->blinded_kp.pubkey, desc->time_period_num,
  2271. service->desc_next == desc, 0, responsible_dirs);
  2272. /* Check if any new hsdirs have been added to the responsible hsdirs set:
  2273. * Iterate over the list of new hsdirs, and reupload if any of them is not
  2274. * present in the list of previous hsdirs.
  2275. */
  2276. SMARTLIST_FOREACH_BEGIN(responsible_dirs, const routerstatus_t *, hsdir_rs) {
  2277. char b64_digest[BASE64_DIGEST_LEN+1] = {0};
  2278. digest_to_base64(b64_digest, hsdir_rs->identity_digest);
  2279. if (!smartlist_contains_string(desc->previous_hsdirs, b64_digest)) {
  2280. should_reupload = 1;
  2281. break;
  2282. }
  2283. } SMARTLIST_FOREACH_END(hsdir_rs);
  2284. done:
  2285. smartlist_free(responsible_dirs);
  2286. return should_reupload;
  2287. }
  2288. /* Return 1 if the given descriptor from the given service can be uploaded
  2289. * else return 0 if it can not. */
  2290. static int
  2291. should_service_upload_descriptor(const hs_service_t *service,
  2292. const hs_service_descriptor_t *desc, time_t now)
  2293. {
  2294. unsigned int num_intro_points;
  2295. tor_assert(service);
  2296. tor_assert(desc);
  2297. /* If this descriptors has missing intro points that is that it couldn't get
  2298. * them all when it was time to pick them, it means that we should upload
  2299. * instead of waiting an arbitrary amount of time breaking the service.
  2300. * Else, if we have no missing intro points, we use the value taken from the
  2301. * service configuration. */
  2302. if (desc->missing_intro_points) {
  2303. num_intro_points = digest256map_size(desc->intro_points.map);
  2304. } else {
  2305. num_intro_points = service->config.num_intro_points;
  2306. }
  2307. /* This means we tried to pick intro points but couldn't get any so do not
  2308. * upload descriptor in this case. We need at least one for the service to
  2309. * be reachable. */
  2310. if (desc->missing_intro_points && num_intro_points == 0) {
  2311. goto cannot;
  2312. }
  2313. /* Check if all our introduction circuit have been established for all the
  2314. * intro points we have selected. */
  2315. if (count_desc_circuit_established(desc) != num_intro_points) {
  2316. goto cannot;
  2317. }
  2318. /* Is it the right time to upload? */
  2319. if (desc->next_upload_time > now) {
  2320. goto cannot;
  2321. }
  2322. /* Don't upload desc if we don't have a live consensus */
  2323. if (!networkstatus_get_live_consensus(now)) {
  2324. goto cannot;
  2325. }
  2326. /* Do we know enough router descriptors to have adequate vision of the HSDir
  2327. hash ring? */
  2328. if (!router_have_minimum_dir_info()) {
  2329. goto cannot;
  2330. }
  2331. /* Can upload! */
  2332. return 1;
  2333. cannot:
  2334. return 0;
  2335. }
  2336. /* Scheduled event run from the main loop. Try to upload the descriptor for
  2337. * each service. */
  2338. STATIC void
  2339. run_upload_descriptor_event(time_t now)
  2340. {
  2341. /* v2 services use the same function for descriptor creation and upload so
  2342. * we do everything here because the intro circuits were checked before. */
  2343. if (rend_num_services() > 0) {
  2344. rend_consider_services_upload(now);
  2345. rend_consider_descriptor_republication();
  2346. }
  2347. /* Run v3+ check. */
  2348. FOR_EACH_SERVICE_BEGIN(service) {
  2349. FOR_EACH_DESCRIPTOR_BEGIN(service, desc) {
  2350. /* If we were asked to re-examine the hash ring, and it changed, then
  2351. schedule an upload */
  2352. if (consider_republishing_hs_descriptors &&
  2353. service_desc_hsdirs_changed(service, desc)) {
  2354. service_desc_schedule_upload(desc, now, 0);
  2355. }
  2356. /* Can this descriptor be uploaded? */
  2357. if (!should_service_upload_descriptor(service, desc, now)) {
  2358. continue;
  2359. }
  2360. log_info(LD_REND, "Initiating upload for hidden service %s descriptor "
  2361. "for service %s with %u/%u introduction points%s.",
  2362. (desc == service->desc_current) ? "current" : "next",
  2363. safe_str_client(service->onion_address),
  2364. digest256map_size(desc->intro_points.map),
  2365. service->config.num_intro_points,
  2366. (desc->missing_intro_points) ? " (couldn't pick more)" : "");
  2367. /* At this point, we have to upload the descriptor so start by building
  2368. * the intro points descriptor section which we are now sure to be
  2369. * accurate because all circuits have been established. */
  2370. build_desc_intro_points(service, desc, now);
  2371. upload_descriptor_to_all(service, desc);
  2372. } FOR_EACH_DESCRIPTOR_END;
  2373. } FOR_EACH_SERVICE_END;
  2374. /* We are done considering whether to republish rend descriptors */
  2375. consider_republishing_hs_descriptors = 0;
  2376. }
  2377. /* Called when the introduction point circuit is done building and ready to be
  2378. * used. */
  2379. static void
  2380. service_intro_circ_has_opened(origin_circuit_t *circ)
  2381. {
  2382. hs_service_t *service = NULL;
  2383. hs_service_intro_point_t *ip = NULL;
  2384. hs_service_descriptor_t *desc = NULL;
  2385. tor_assert(circ);
  2386. /* Let's do some basic sanity checking of the circ state */
  2387. if (BUG(!circ->cpath)) {
  2388. return;
  2389. }
  2390. if (BUG(TO_CIRCUIT(circ)->purpose != CIRCUIT_PURPOSE_S_ESTABLISH_INTRO)) {
  2391. return;
  2392. }
  2393. if (BUG(!circ->hs_ident)) {
  2394. return;
  2395. }
  2396. /* Get the corresponding service and intro point. */
  2397. get_objects_from_ident(circ->hs_ident, &service, &ip, &desc);
  2398. if (service == NULL) {
  2399. log_warn(LD_REND, "Unknown service identity key %s on the introduction "
  2400. "circuit %u. Can't find onion service.",
  2401. safe_str_client(ed25519_fmt(&circ->hs_ident->identity_pk)),
  2402. TO_CIRCUIT(circ)->n_circ_id);
  2403. goto err;
  2404. }
  2405. if (ip == NULL) {
  2406. log_warn(LD_REND, "Unknown introduction point auth key on circuit %u "
  2407. "for service %s",
  2408. TO_CIRCUIT(circ)->n_circ_id,
  2409. safe_str_client(service->onion_address));
  2410. goto err;
  2411. }
  2412. /* We can't have an IP object without a descriptor. */
  2413. tor_assert(desc);
  2414. if (hs_circ_service_intro_has_opened(service, ip, desc, circ)) {
  2415. /* Getting here means that the circuit has been re-purposed because we
  2416. * have enough intro circuit opened. Remove the IP from the service. */
  2417. service_intro_point_remove(service, ip);
  2418. service_intro_point_free(ip);
  2419. }
  2420. goto done;
  2421. err:
  2422. /* Close circuit, we can't use it. */
  2423. circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_NOSUCHSERVICE);
  2424. done:
  2425. return;
  2426. }
  2427. /* Called when a rendezvous circuit is done building and ready to be used. */
  2428. static void
  2429. service_rendezvous_circ_has_opened(origin_circuit_t *circ)
  2430. {
  2431. hs_service_t *service = NULL;
  2432. tor_assert(circ);
  2433. tor_assert(circ->cpath);
  2434. /* Getting here means this is a v3 rendezvous circuit. */
  2435. tor_assert(circ->hs_ident);
  2436. tor_assert(TO_CIRCUIT(circ)->purpose == CIRCUIT_PURPOSE_S_CONNECT_REND);
  2437. /* Declare the circuit dirty to avoid reuse, and for path-bias. We set the
  2438. * timestamp regardless of its content because that circuit could have been
  2439. * cannibalized so in any cases, we are about to use that circuit more. */
  2440. TO_CIRCUIT(circ)->timestamp_dirty = time(NULL);
  2441. pathbias_count_use_attempt(circ);
  2442. /* Get the corresponding service and intro point. */
  2443. get_objects_from_ident(circ->hs_ident, &service, NULL, NULL);
  2444. if (service == NULL) {
  2445. log_warn(LD_REND, "Unknown service identity key %s on the rendezvous "
  2446. "circuit %u with cookie %s. Can't find onion service.",
  2447. safe_str_client(ed25519_fmt(&circ->hs_ident->identity_pk)),
  2448. TO_CIRCUIT(circ)->n_circ_id,
  2449. hex_str((const char *) circ->hs_ident->rendezvous_cookie,
  2450. REND_COOKIE_LEN));
  2451. goto err;
  2452. }
  2453. /* If the cell can't be sent, the circuit will be closed within this
  2454. * function. */
  2455. hs_circ_service_rp_has_opened(service, circ);
  2456. goto done;
  2457. err:
  2458. circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_NOSUCHSERVICE);
  2459. done:
  2460. return;
  2461. }
  2462. /* We've been expecting an INTRO_ESTABLISHED cell on this circuit and it just
  2463. * arrived. Handle the INTRO_ESTABLISHED cell arriving on the given
  2464. * introduction circuit. Return 0 on success else a negative value. */
  2465. static int
  2466. service_handle_intro_established(origin_circuit_t *circ,
  2467. const uint8_t *payload,
  2468. size_t payload_len)
  2469. {
  2470. hs_service_t *service = NULL;
  2471. hs_service_intro_point_t *ip = NULL;
  2472. tor_assert(circ);
  2473. tor_assert(payload);
  2474. tor_assert(TO_CIRCUIT(circ)->purpose == CIRCUIT_PURPOSE_S_ESTABLISH_INTRO);
  2475. /* We need the service and intro point for this cell. */
  2476. get_objects_from_ident(circ->hs_ident, &service, &ip, NULL);
  2477. /* Get service object from the circuit identifier. */
  2478. if (service == NULL) {
  2479. log_warn(LD_REND, "Unknown service identity key %s on the introduction "
  2480. "circuit %u. Can't find onion service.",
  2481. safe_str_client(ed25519_fmt(&circ->hs_ident->identity_pk)),
  2482. TO_CIRCUIT(circ)->n_circ_id);
  2483. goto err;
  2484. }
  2485. if (ip == NULL) {
  2486. /* We don't recognize the key. */
  2487. log_warn(LD_REND, "Introduction circuit established without an intro "
  2488. "point object on circuit %u for service %s",
  2489. TO_CIRCUIT(circ)->n_circ_id,
  2490. safe_str_client(service->onion_address));
  2491. goto err;
  2492. }
  2493. /* Try to parse the payload into a cell making sure we do actually have a
  2494. * valid cell. On success, the ip object and circuit purpose is updated to
  2495. * reflect the fact that the introduction circuit is established. */
  2496. if (hs_circ_handle_intro_established(service, ip, circ, payload,
  2497. payload_len) < 0) {
  2498. goto err;
  2499. }
  2500. /* Flag that we have an established circuit for this intro point. This value
  2501. * is what indicates the upload scheduled event if we are ready to build the
  2502. * intro point into the descriptor and upload. */
  2503. ip->circuit_established = 1;
  2504. log_info(LD_REND, "Successfully received an INTRO_ESTABLISHED cell "
  2505. "on circuit %u for service %s",
  2506. TO_CIRCUIT(circ)->n_circ_id,
  2507. safe_str_client(service->onion_address));
  2508. return 0;
  2509. err:
  2510. return -1;
  2511. }
  2512. /* We just received an INTRODUCE2 cell on the established introduction circuit
  2513. * circ. Handle the cell and return 0 on success else a negative value. */
  2514. static int
  2515. service_handle_introduce2(origin_circuit_t *circ, const uint8_t *payload,
  2516. size_t payload_len)
  2517. {
  2518. hs_service_t *service = NULL;
  2519. hs_service_intro_point_t *ip = NULL;
  2520. hs_service_descriptor_t *desc = NULL;
  2521. tor_assert(circ);
  2522. tor_assert(payload);
  2523. tor_assert(TO_CIRCUIT(circ)->purpose == CIRCUIT_PURPOSE_S_INTRO);
  2524. /* We'll need every object associated with this circuit. */
  2525. get_objects_from_ident(circ->hs_ident, &service, &ip, &desc);
  2526. /* Get service object from the circuit identifier. */
  2527. if (service == NULL) {
  2528. log_warn(LD_BUG, "Unknown service identity key %s when handling "
  2529. "an INTRODUCE2 cell on circuit %u",
  2530. safe_str_client(ed25519_fmt(&circ->hs_ident->identity_pk)),
  2531. TO_CIRCUIT(circ)->n_circ_id);
  2532. goto err;
  2533. }
  2534. if (ip == NULL) {
  2535. /* We don't recognize the key. */
  2536. log_warn(LD_BUG, "Unknown introduction auth key when handling "
  2537. "an INTRODUCE2 cell on circuit %u for service %s",
  2538. TO_CIRCUIT(circ)->n_circ_id,
  2539. safe_str_client(service->onion_address));
  2540. goto err;
  2541. }
  2542. /* If we have an IP object, we MUST have a descriptor object. */
  2543. tor_assert(desc);
  2544. /* The following will parse, decode and launch the rendezvous point circuit.
  2545. * Both current and legacy cells are handled. */
  2546. if (hs_circ_handle_introduce2(service, circ, ip, desc->desc->subcredential,
  2547. payload, payload_len) < 0) {
  2548. goto err;
  2549. }
  2550. return 0;
  2551. err:
  2552. return -1;
  2553. }
  2554. /* Add to list every filename used by service. This is used by the sandbox
  2555. * subsystem. */
  2556. static void
  2557. service_add_fnames_to_list(const hs_service_t *service, smartlist_t *list)
  2558. {
  2559. const char *s_dir;
  2560. char fname[128] = {0};
  2561. tor_assert(service);
  2562. tor_assert(list);
  2563. /* Ease our life. */
  2564. s_dir = service->config.directory_path;
  2565. /* The hostname file. */
  2566. smartlist_add(list, hs_path_from_filename(s_dir, fname_hostname));
  2567. /* The key files splitted in two. */
  2568. tor_snprintf(fname, sizeof(fname), "%s_secret_key", fname_keyfile_prefix);
  2569. smartlist_add(list, hs_path_from_filename(s_dir, fname));
  2570. tor_snprintf(fname, sizeof(fname), "%s_public_key", fname_keyfile_prefix);
  2571. smartlist_add(list, hs_path_from_filename(s_dir, fname));
  2572. }
  2573. /* ========== */
  2574. /* Public API */
  2575. /* ========== */
  2576. /* This is called everytime the service map (v2 or v3) changes that is if an
  2577. * element is added or removed. */
  2578. void
  2579. hs_service_map_has_changed(void)
  2580. {
  2581. /* If we now have services where previously we had not, we need to enable
  2582. * the HS service main loop event. If we changed to having no services, we
  2583. * need to disable the event. */
  2584. rescan_periodic_events(get_options());
  2585. }
  2586. /* Upload an encoded descriptor in encoded_desc of the given version. This
  2587. * descriptor is for the service identity_pk and blinded_pk used to setup the
  2588. * directory connection identifier. It is uploaded to the directory hsdir_rs
  2589. * routerstatus_t object.
  2590. *
  2591. * NOTE: This function does NOT check for PublishHidServDescriptors because it
  2592. * is only used by the control port command HSPOST outside of this subsystem.
  2593. * Inside this code, upload_descriptor_to_hsdir() should be used. */
  2594. void
  2595. hs_service_upload_desc_to_dir(const char *encoded_desc,
  2596. const uint8_t version,
  2597. const ed25519_public_key_t *identity_pk,
  2598. const ed25519_public_key_t *blinded_pk,
  2599. const routerstatus_t *hsdir_rs)
  2600. {
  2601. char version_str[4] = {0};
  2602. directory_request_t *dir_req;
  2603. hs_ident_dir_conn_t ident;
  2604. tor_assert(encoded_desc);
  2605. tor_assert(identity_pk);
  2606. tor_assert(blinded_pk);
  2607. tor_assert(hsdir_rs);
  2608. /* Setup the connection identifier. */
  2609. memset(&ident, 0, sizeof(ident));
  2610. hs_ident_dir_conn_init(identity_pk, blinded_pk, &ident);
  2611. /* This is our resource when uploading which is used to construct the URL
  2612. * with the version number: "/tor/hs/<version>/publish". */
  2613. tor_snprintf(version_str, sizeof(version_str), "%u", version);
  2614. /* Build the directory request for this HSDir. */
  2615. dir_req = directory_request_new(DIR_PURPOSE_UPLOAD_HSDESC);
  2616. directory_request_set_routerstatus(dir_req, hsdir_rs);
  2617. directory_request_set_indirection(dir_req, DIRIND_ANONYMOUS);
  2618. directory_request_set_resource(dir_req, version_str);
  2619. directory_request_set_payload(dir_req, encoded_desc,
  2620. strlen(encoded_desc));
  2621. /* The ident object is copied over the directory connection object once
  2622. * the directory request is initiated. */
  2623. directory_request_upload_set_hs_ident(dir_req, &ident);
  2624. /* Initiate the directory request to the hsdir.*/
  2625. directory_initiate_request(dir_req);
  2626. directory_request_free(dir_req);
  2627. }
  2628. /* Add the ephemeral service using the secret key sk and ports. Both max
  2629. * streams parameter will be set in the newly created service.
  2630. *
  2631. * Ownership of sk and ports is passed to this routine. Regardless of
  2632. * success/failure, callers should not touch these values after calling this
  2633. * routine, and may assume that correct cleanup has been done on failure.
  2634. *
  2635. * Return an appropriate hs_service_add_ephemeral_status_t. */
  2636. hs_service_add_ephemeral_status_t
  2637. hs_service_add_ephemeral(ed25519_secret_key_t *sk, smartlist_t *ports,
  2638. int max_streams_per_rdv_circuit,
  2639. int max_streams_close_circuit, char **address_out)
  2640. {
  2641. hs_service_add_ephemeral_status_t ret;
  2642. hs_service_t *service = NULL;
  2643. tor_assert(sk);
  2644. tor_assert(ports);
  2645. tor_assert(address_out);
  2646. service = hs_service_new(get_options());
  2647. /* Setup the service configuration with specifics. A default service is
  2648. * HS_VERSION_TWO so explicitly set it. */
  2649. service->config.version = HS_VERSION_THREE;
  2650. service->config.max_streams_per_rdv_circuit = max_streams_per_rdv_circuit;
  2651. service->config.max_streams_close_circuit = !!max_streams_close_circuit;
  2652. service->config.is_ephemeral = 1;
  2653. smartlist_free(service->config.ports);
  2654. service->config.ports = ports;
  2655. /* Handle the keys. */
  2656. memcpy(&service->keys.identity_sk, sk, sizeof(service->keys.identity_sk));
  2657. if (ed25519_public_key_generate(&service->keys.identity_pk,
  2658. &service->keys.identity_sk) < 0) {
  2659. log_warn(LD_CONFIG, "Unable to generate ed25519 public key"
  2660. "for v3 service.");
  2661. ret = RSAE_BADPRIVKEY;
  2662. goto err;
  2663. }
  2664. /* Make sure we have at least one port. */
  2665. if (smartlist_len(service->config.ports) == 0) {
  2666. log_warn(LD_CONFIG, "At least one VIRTPORT/TARGET must be specified "
  2667. "for v3 service.");
  2668. ret = RSAE_BADVIRTPORT;
  2669. goto err;
  2670. }
  2671. /* Build the onion address for logging purposes but also the control port
  2672. * uses it for the HS_DESC event. */
  2673. hs_build_address(&service->keys.identity_pk,
  2674. (uint8_t) service->config.version,
  2675. service->onion_address);
  2676. /* The only way the registration can fail is if the service public key
  2677. * already exists. */
  2678. if (BUG(register_service(hs_service_map, service) < 0)) {
  2679. log_warn(LD_CONFIG, "Onion Service private key collides with an "
  2680. "existing v3 service.");
  2681. ret = RSAE_ADDREXISTS;
  2682. goto err;
  2683. }
  2684. log_info(LD_CONFIG, "Added ephemeral v3 onion service: %s",
  2685. safe_str_client(service->onion_address));
  2686. *address_out = tor_strdup(service->onion_address);
  2687. ret = RSAE_OKAY;
  2688. goto end;
  2689. err:
  2690. hs_service_free(service);
  2691. end:
  2692. memwipe(sk, 0, sizeof(ed25519_secret_key_t));
  2693. tor_free(sk);
  2694. return ret;
  2695. }
  2696. /* For the given onion address, delete the ephemeral service. Return 0 on
  2697. * success else -1 on error. */
  2698. int
  2699. hs_service_del_ephemeral(const char *address)
  2700. {
  2701. uint8_t version;
  2702. ed25519_public_key_t pk;
  2703. hs_service_t *service = NULL;
  2704. tor_assert(address);
  2705. if (hs_parse_address(address, &pk, NULL, &version) < 0) {
  2706. log_warn(LD_CONFIG, "Requested malformed v3 onion address for removal.");
  2707. goto err;
  2708. }
  2709. if (version != HS_VERSION_THREE) {
  2710. log_warn(LD_CONFIG, "Requested version of onion address for removal "
  2711. "is not supported.");
  2712. goto err;
  2713. }
  2714. service = find_service(hs_service_map, &pk);
  2715. if (service == NULL) {
  2716. log_warn(LD_CONFIG, "Requested non-existent v3 hidden service for "
  2717. "removal.");
  2718. goto err;
  2719. }
  2720. if (!service->config.is_ephemeral) {
  2721. log_warn(LD_CONFIG, "Requested non-ephemeral v3 hidden service for "
  2722. "removal.");
  2723. goto err;
  2724. }
  2725. /* Close circuits, remove from map and finally free. */
  2726. close_service_circuits(service);
  2727. remove_service(hs_service_map, service);
  2728. hs_service_free(service);
  2729. log_info(LD_CONFIG, "Removed ephemeral v3 hidden service: %s",
  2730. safe_str_client(address));
  2731. return 0;
  2732. err:
  2733. return -1;
  2734. }
  2735. /* Using the ed25519 public key pk, find a service for that key and return the
  2736. * current encoded descriptor as a newly allocated string or NULL if not
  2737. * found. This is used by the control port subsystem. */
  2738. char *
  2739. hs_service_lookup_current_desc(const ed25519_public_key_t *pk)
  2740. {
  2741. const hs_service_t *service;
  2742. tor_assert(pk);
  2743. service = find_service(hs_service_map, pk);
  2744. if (service && service->desc_current) {
  2745. char *encoded_desc = NULL;
  2746. /* No matter what is the result (which should never be a failure), return
  2747. * the encoded variable, if success it will contain the right thing else
  2748. * it will be NULL. */
  2749. hs_desc_encode_descriptor(service->desc_current->desc,
  2750. &service->desc_current->signing_kp,
  2751. &encoded_desc);
  2752. return encoded_desc;
  2753. }
  2754. return NULL;
  2755. }
  2756. /* Return the number of service we have configured and usable. */
  2757. unsigned int
  2758. hs_service_get_num_services(void)
  2759. {
  2760. if (hs_service_map == NULL) {
  2761. return 0;
  2762. }
  2763. return HT_SIZE(hs_service_map);
  2764. }
  2765. /* Called once an introduction circuit is closed. If the circuit doesn't have
  2766. * a v3 identifier, it is ignored. */
  2767. void
  2768. hs_service_intro_circ_has_closed(origin_circuit_t *circ)
  2769. {
  2770. hs_service_t *service = NULL;
  2771. hs_service_intro_point_t *ip = NULL;
  2772. hs_service_descriptor_t *desc = NULL;
  2773. tor_assert(circ);
  2774. if (circ->hs_ident == NULL) {
  2775. /* This is not a v3 circuit, ignore. */
  2776. goto end;
  2777. }
  2778. get_objects_from_ident(circ->hs_ident, &service, &ip, &desc);
  2779. if (service == NULL) {
  2780. /* This is possible if the circuits are closed and the service is
  2781. * immediately deleted. */
  2782. log_info(LD_REND, "Unable to find any hidden service associated "
  2783. "identity key %s on intro circuit %u.",
  2784. ed25519_fmt(&circ->hs_ident->identity_pk),
  2785. TO_CIRCUIT(circ)->n_circ_id);
  2786. goto end;
  2787. }
  2788. if (ip == NULL) {
  2789. /* The introduction point object has already been removed probably by our
  2790. * cleanup process so ignore. */
  2791. goto end;
  2792. }
  2793. /* Can't have an intro point object without a descriptor. */
  2794. tor_assert(desc);
  2795. /* Circuit disappeared so make sure the intro point is updated. By
  2796. * keeping the object in the descriptor, we'll be able to retry. */
  2797. ip->circuit_established = 0;
  2798. end:
  2799. return;
  2800. }
  2801. /* Given conn, a rendezvous edge connection acting as an exit stream, look up
  2802. * the hidden service for the circuit circ, and look up the port and address
  2803. * based on the connection port. Assign the actual connection address.
  2804. *
  2805. * Return 0 on success. Return -1 on failure and the caller should NOT close
  2806. * the circuit. Return -2 on failure and the caller MUST close the circuit for
  2807. * security reasons. */
  2808. int
  2809. hs_service_set_conn_addr_port(const origin_circuit_t *circ,
  2810. edge_connection_t *conn)
  2811. {
  2812. hs_service_t *service = NULL;
  2813. tor_assert(circ);
  2814. tor_assert(conn);
  2815. tor_assert(TO_CIRCUIT(circ)->purpose == CIRCUIT_PURPOSE_S_REND_JOINED);
  2816. tor_assert(circ->hs_ident);
  2817. get_objects_from_ident(circ->hs_ident, &service, NULL, NULL);
  2818. if (service == NULL) {
  2819. log_warn(LD_REND, "Unable to find any hidden service associated "
  2820. "identity key %s on rendezvous circuit %u.",
  2821. ed25519_fmt(&circ->hs_ident->identity_pk),
  2822. TO_CIRCUIT(circ)->n_circ_id);
  2823. /* We want the caller to close the circuit because it's not a valid
  2824. * service so no danger. Attempting to bruteforce the entire key space by
  2825. * opening circuits to learn which service is being hosted here is
  2826. * impractical. */
  2827. goto err_close;
  2828. }
  2829. /* Enforce the streams-per-circuit limit, and refuse to provide a mapping if
  2830. * this circuit will exceed the limit. */
  2831. if (service->config.max_streams_per_rdv_circuit > 0 &&
  2832. (circ->hs_ident->num_rdv_streams >=
  2833. service->config.max_streams_per_rdv_circuit)) {
  2834. #define MAX_STREAM_WARN_INTERVAL 600
  2835. static struct ratelim_t stream_ratelim =
  2836. RATELIM_INIT(MAX_STREAM_WARN_INTERVAL);
  2837. log_fn_ratelim(&stream_ratelim, LOG_WARN, LD_REND,
  2838. "Maximum streams per circuit limit reached on "
  2839. "rendezvous circuit %u for service %s. Circuit has "
  2840. "%" PRIu64 " out of %" PRIu64 " streams. %s.",
  2841. TO_CIRCUIT(circ)->n_circ_id,
  2842. service->onion_address,
  2843. circ->hs_ident->num_rdv_streams,
  2844. service->config.max_streams_per_rdv_circuit,
  2845. service->config.max_streams_close_circuit ?
  2846. "Closing circuit" : "Ignoring open stream request");
  2847. if (service->config.max_streams_close_circuit) {
  2848. /* Service explicitly configured to close immediately. */
  2849. goto err_close;
  2850. }
  2851. /* Exceeding the limit makes tor silently ignore the stream creation
  2852. * request and keep the circuit open. */
  2853. goto err_no_close;
  2854. }
  2855. /* Find a virtual port of that service mathcing the one in the connection if
  2856. * successful, set the address in the connection. */
  2857. if (hs_set_conn_addr_port(service->config.ports, conn) < 0) {
  2858. log_info(LD_REND, "No virtual port mapping exists for port %d for "
  2859. "hidden service %s.",
  2860. TO_CONN(conn)->port, service->onion_address);
  2861. if (service->config.allow_unknown_ports) {
  2862. /* Service explicitly allow connection to unknown ports so close right
  2863. * away because we do not care about port mapping. */
  2864. goto err_close;
  2865. }
  2866. /* If the service didn't explicitly allow it, we do NOT close the circuit
  2867. * here to raise the bar in terms of performance for port mapping. */
  2868. goto err_no_close;
  2869. }
  2870. /* Success. */
  2871. return 0;
  2872. err_close:
  2873. /* Indicate the caller that the circuit should be closed. */
  2874. return -2;
  2875. err_no_close:
  2876. /* Indicate the caller to NOT close the circuit. */
  2877. return -1;
  2878. }
  2879. /* Add to file_list every filename used by a configured hidden service, and to
  2880. * dir_list every directory path used by a configured hidden service. This is
  2881. * used by the sandbox subsystem to whitelist those. */
  2882. void
  2883. hs_service_lists_fnames_for_sandbox(smartlist_t *file_list,
  2884. smartlist_t *dir_list)
  2885. {
  2886. tor_assert(file_list);
  2887. tor_assert(dir_list);
  2888. /* Add files and dirs for legacy services. */
  2889. rend_services_add_filenames_to_lists(file_list, dir_list);
  2890. /* Add files and dirs for v3+. */
  2891. FOR_EACH_SERVICE_BEGIN(service) {
  2892. /* Skip ephemeral service, they don't touch the disk. */
  2893. if (service->config.is_ephemeral) {
  2894. continue;
  2895. }
  2896. service_add_fnames_to_list(service, file_list);
  2897. smartlist_add_strdup(dir_list, service->config.directory_path);
  2898. } FOR_EACH_DESCRIPTOR_END;
  2899. }
  2900. /* Called when our internal view of the directory has changed. We might have
  2901. * received a new batch of descriptors which might affect the shape of the
  2902. * HSDir hash ring. Signal that we should reexamine the hash ring and
  2903. * re-upload our HS descriptors if needed. */
  2904. void
  2905. hs_service_dir_info_changed(void)
  2906. {
  2907. if (hs_service_get_num_services() > 0) {
  2908. /* New directory information usually goes every consensus so rate limit
  2909. * every 30 minutes to not be too conservative. */
  2910. static struct ratelim_t dir_info_changed_ratelim = RATELIM_INIT(30 * 60);
  2911. log_fn_ratelim(&dir_info_changed_ratelim, LOG_INFO, LD_REND,
  2912. "New dirinfo arrived: consider reuploading descriptor");
  2913. consider_republishing_hs_descriptors = 1;
  2914. }
  2915. }
  2916. /* Called when we get an INTRODUCE2 cell on the circ. Respond to the cell and
  2917. * launch a circuit to the rendezvous point. */
  2918. int
  2919. hs_service_receive_introduce2(origin_circuit_t *circ, const uint8_t *payload,
  2920. size_t payload_len)
  2921. {
  2922. int ret = -1;
  2923. tor_assert(circ);
  2924. tor_assert(payload);
  2925. /* Do some initial validation and logging before we parse the cell */
  2926. if (TO_CIRCUIT(circ)->purpose != CIRCUIT_PURPOSE_S_INTRO) {
  2927. log_warn(LD_PROTOCOL, "Received an INTRODUCE2 cell on a "
  2928. "non introduction circuit of purpose %d",
  2929. TO_CIRCUIT(circ)->purpose);
  2930. goto done;
  2931. }
  2932. if (circ->hs_ident) {
  2933. ret = service_handle_introduce2(circ, payload, payload_len);
  2934. hs_stats_note_introduce2_cell(1);
  2935. } else {
  2936. ret = rend_service_receive_introduction(circ, payload, payload_len);
  2937. hs_stats_note_introduce2_cell(0);
  2938. }
  2939. done:
  2940. return ret;
  2941. }
  2942. /* Called when we get an INTRO_ESTABLISHED cell. Mark the circuit as an
  2943. * established introduction point. Return 0 on success else a negative value
  2944. * and the circuit is closed. */
  2945. int
  2946. hs_service_receive_intro_established(origin_circuit_t *circ,
  2947. const uint8_t *payload,
  2948. size_t payload_len)
  2949. {
  2950. int ret = -1;
  2951. tor_assert(circ);
  2952. tor_assert(payload);
  2953. if (TO_CIRCUIT(circ)->purpose != CIRCUIT_PURPOSE_S_ESTABLISH_INTRO) {
  2954. log_warn(LD_PROTOCOL, "Received an INTRO_ESTABLISHED cell on a "
  2955. "non introduction circuit of purpose %d",
  2956. TO_CIRCUIT(circ)->purpose);
  2957. goto err;
  2958. }
  2959. /* Handle both version. v2 uses rend_data and v3 uses the hs circuit
  2960. * identifier hs_ident. Can't be both. */
  2961. if (circ->hs_ident) {
  2962. ret = service_handle_intro_established(circ, payload, payload_len);
  2963. } else {
  2964. ret = rend_service_intro_established(circ, payload, payload_len);
  2965. }
  2966. if (ret < 0) {
  2967. goto err;
  2968. }
  2969. return 0;
  2970. err:
  2971. circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_TORPROTOCOL);
  2972. return -1;
  2973. }
  2974. /* Called when any kind of hidden service circuit is done building thus
  2975. * opened. This is the entry point from the circuit subsystem. */
  2976. void
  2977. hs_service_circuit_has_opened(origin_circuit_t *circ)
  2978. {
  2979. tor_assert(circ);
  2980. /* Handle both version. v2 uses rend_data and v3 uses the hs circuit
  2981. * identifier hs_ident. Can't be both. */
  2982. switch (TO_CIRCUIT(circ)->purpose) {
  2983. case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO:
  2984. if (circ->hs_ident) {
  2985. service_intro_circ_has_opened(circ);
  2986. } else {
  2987. rend_service_intro_has_opened(circ);
  2988. }
  2989. break;
  2990. case CIRCUIT_PURPOSE_S_CONNECT_REND:
  2991. if (circ->hs_ident) {
  2992. service_rendezvous_circ_has_opened(circ);
  2993. } else {
  2994. rend_service_rendezvous_has_opened(circ);
  2995. }
  2996. break;
  2997. default:
  2998. tor_assert(0);
  2999. }
  3000. }
  3001. /* Load and/or generate keys for all onion services including the client
  3002. * authorization if any. Return 0 on success, -1 on failure. */
  3003. int
  3004. hs_service_load_all_keys(void)
  3005. {
  3006. /* Load v2 service keys if we have v2. */
  3007. if (rend_num_services() != 0) {
  3008. if (rend_service_load_all_keys(NULL) < 0) {
  3009. goto err;
  3010. }
  3011. }
  3012. /* Load or/and generate them for v3+. */
  3013. SMARTLIST_FOREACH_BEGIN(hs_service_staging_list, hs_service_t *, service) {
  3014. /* Ignore ephemeral service, they already have their keys set. */
  3015. if (service->config.is_ephemeral) {
  3016. continue;
  3017. }
  3018. log_info(LD_REND, "Loading v3 onion service keys from %s",
  3019. service_escaped_dir(service));
  3020. if (load_service_keys(service) < 0) {
  3021. goto err;
  3022. }
  3023. /* XXX: Load/Generate client authorization keys. (#20700) */
  3024. } SMARTLIST_FOREACH_END(service);
  3025. /* Final step, the staging list contains service in a quiescent state that
  3026. * is ready to be used. Register them to the global map. Once this is over,
  3027. * the staging list will be cleaned up. */
  3028. register_all_services();
  3029. /* All keys have been loaded successfully. */
  3030. return 0;
  3031. err:
  3032. return -1;
  3033. }
  3034. /* Put all service object in the given service list. After this, the caller
  3035. * looses ownership of every elements in the list and responsible to free the
  3036. * list pointer. */
  3037. void
  3038. hs_service_stage_services(const smartlist_t *service_list)
  3039. {
  3040. tor_assert(service_list);
  3041. /* This list is freed at registration time but this function can be called
  3042. * multiple time. */
  3043. if (hs_service_staging_list == NULL) {
  3044. hs_service_staging_list = smartlist_new();
  3045. }
  3046. /* Add all service object to our staging list. Caller is responsible for
  3047. * freeing the service_list. */
  3048. smartlist_add_all(hs_service_staging_list, service_list);
  3049. }
  3050. /* Allocate and initilize a service object. The service configuration will
  3051. * contain the default values. Return the newly allocated object pointer. This
  3052. * function can't fail. */
  3053. hs_service_t *
  3054. hs_service_new(const or_options_t *options)
  3055. {
  3056. hs_service_t *service = tor_malloc_zero(sizeof(hs_service_t));
  3057. /* Set default configuration value. */
  3058. set_service_default_config(&service->config, options);
  3059. /* Set the default service version. */
  3060. service->config.version = HS_SERVICE_DEFAULT_VERSION;
  3061. /* Allocate the CLIENT_PK replay cache in service state. */
  3062. service->state.replay_cache_rend_cookie =
  3063. replaycache_new(REND_REPLAY_TIME_INTERVAL, REND_REPLAY_TIME_INTERVAL);
  3064. return service;
  3065. }
  3066. /* Free the given <b>service</b> object and all its content. This function
  3067. * also takes care of wiping service keys from memory. It is safe to pass a
  3068. * NULL pointer. */
  3069. void
  3070. hs_service_free_(hs_service_t *service)
  3071. {
  3072. if (service == NULL) {
  3073. return;
  3074. }
  3075. /* Free descriptors. Go over both descriptor with this loop. */
  3076. FOR_EACH_DESCRIPTOR_BEGIN(service, desc) {
  3077. service_descriptor_free(desc);
  3078. } FOR_EACH_DESCRIPTOR_END;
  3079. /* Free service configuration. */
  3080. service_clear_config(&service->config);
  3081. /* Free replay cache from state. */
  3082. if (service->state.replay_cache_rend_cookie) {
  3083. replaycache_free(service->state.replay_cache_rend_cookie);
  3084. }
  3085. /* Wipe service keys. */
  3086. memwipe(&service->keys.identity_sk, 0, sizeof(service->keys.identity_sk));
  3087. tor_free(service);
  3088. }
  3089. /* Periodic callback. Entry point from the main loop to the HS service
  3090. * subsystem. This is call every second. This is skipped if tor can't build a
  3091. * circuit or the network is disabled. */
  3092. void
  3093. hs_service_run_scheduled_events(time_t now)
  3094. {
  3095. /* First thing we'll do here is to make sure our services are in a
  3096. * quiescent state for the scheduled events. */
  3097. run_housekeeping_event(now);
  3098. /* Order matters here. We first make sure the descriptor object for each
  3099. * service contains the latest data. Once done, we check if we need to open
  3100. * new introduction circuit. Finally, we try to upload the descriptor for
  3101. * each service. */
  3102. /* Make sure descriptors are up to date. */
  3103. run_build_descriptor_event(now);
  3104. /* Make sure services have enough circuits. */
  3105. run_build_circuit_event(now);
  3106. /* Upload the descriptors if needed/possible. */
  3107. run_upload_descriptor_event(now);
  3108. }
  3109. /* Initialize the service HS subsystem. */
  3110. void
  3111. hs_service_init(void)
  3112. {
  3113. /* Should never be called twice. */
  3114. tor_assert(!hs_service_map);
  3115. tor_assert(!hs_service_staging_list);
  3116. /* v2 specific. */
  3117. rend_service_init();
  3118. hs_service_map = tor_malloc_zero(sizeof(struct hs_service_ht));
  3119. HT_INIT(hs_service_ht, hs_service_map);
  3120. hs_service_staging_list = smartlist_new();
  3121. }
  3122. /* Release all global storage of the hidden service subsystem. */
  3123. void
  3124. hs_service_free_all(void)
  3125. {
  3126. rend_service_free_all();
  3127. service_free_all();
  3128. }
  3129. #ifdef TOR_UNIT_TESTS
  3130. /* Return the global service map size. Only used by unit test. */
  3131. STATIC unsigned int
  3132. get_hs_service_map_size(void)
  3133. {
  3134. return HT_SIZE(hs_service_map);
  3135. }
  3136. /* Return the staging list size. Only used by unit test. */
  3137. STATIC int
  3138. get_hs_service_staging_list_size(void)
  3139. {
  3140. return smartlist_len(hs_service_staging_list);
  3141. }
  3142. STATIC hs_service_ht *
  3143. get_hs_service_map(void)
  3144. {
  3145. return hs_service_map;
  3146. }
  3147. STATIC hs_service_t *
  3148. get_first_service(void)
  3149. {
  3150. hs_service_t **obj = HT_START(hs_service_ht, hs_service_map);
  3151. if (obj == NULL) {
  3152. return NULL;
  3153. }
  3154. return *obj;
  3155. }
  3156. #endif /* defined(TOR_UNIT_TESTS) */