hs_service.c 111 KB

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