hs_service.c 122 KB

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