hs_service.c 146 KB

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