hs_service.c 109 KB

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