hs_service.c 115 KB

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