hs_service.c 126 KB

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