hs_service.c 107 KB

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