hs_service.c 117 KB

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