or.h 179 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2008, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /* $Id$ */
  7. /**
  8. * \file or.h
  9. * \brief Master header file for Tor-specific functionality.
  10. **/
  11. #ifndef __OR_H
  12. #define __OR_H
  13. #define OR_H_ID "$Id$"
  14. #include "orconfig.h"
  15. #ifdef MS_WINDOWS
  16. #define WIN32_WINNT 0x400
  17. #define _WIN32_WINNT 0x400
  18. #define WIN32_LEAN_AND_MEAN
  19. #endif
  20. #ifdef HAVE_UNISTD_H
  21. #include <unistd.h>
  22. #endif
  23. #ifdef HAVE_SIGNAL_H
  24. #include <signal.h>
  25. #endif
  26. #ifdef HAVE_NETDB_H
  27. #include <netdb.h>
  28. #endif
  29. #ifdef HAVE_SYS_PARAM_H
  30. #include <sys/param.h> /* FreeBSD needs this to know what version it is */
  31. #endif
  32. #include "torint.h"
  33. #ifdef HAVE_SYS_WAIT_H
  34. #include <sys/wait.h>
  35. #endif
  36. #ifdef HAVE_SYS_FCNTL_H
  37. #include <sys/fcntl.h>
  38. #endif
  39. #ifdef HAVE_FCNTL_H
  40. #include <fcntl.h>
  41. #endif
  42. #ifdef HAVE_SYS_IOCTL_H
  43. #include <sys/ioctl.h>
  44. #endif
  45. #ifdef HAVE_SYS_UN_H
  46. #include <sys/un.h>
  47. #endif
  48. #ifdef HAVE_SYS_STAT_H
  49. #include <sys/stat.h>
  50. #endif
  51. #ifdef HAVE_ARPA_INET_H
  52. #include <arpa/inet.h>
  53. #endif
  54. #ifdef HAVE_ERRNO_H
  55. #include <errno.h>
  56. #endif
  57. #ifdef HAVE_ASSERT_H
  58. #include <assert.h>
  59. #endif
  60. #ifdef HAVE_TIME_H
  61. #include <time.h>
  62. #endif
  63. /** Upper bound on maximum simultaneous connections; can be lowered by
  64. * config file. */
  65. #if defined(CYGWIN) || defined(__CYGWIN__) || defined(IPHONE)
  66. /* Re Cygwin, see http://archives.seul.org/or/talk/Aug-2006/msg00210.html */
  67. /* For an iPhone, the limit would be closer to 9999. But nobody seems to be
  68. * running a server on an iPhone anyway? */
  69. #define MAXCONNECTIONS 3200
  70. #else
  71. /* very high by default. "nobody should need more than this..." */
  72. #define MAXCONNECTIONS 15000
  73. #endif
  74. #ifdef MS_WINDOWS
  75. #include <io.h>
  76. #include <process.h>
  77. #include <direct.h>
  78. #include <windows.h>
  79. #define snprintf _snprintf
  80. #endif
  81. #include "crypto.h"
  82. #include "tortls.h"
  83. #include "log.h"
  84. #include "compat.h"
  85. #include "container.h"
  86. #include "util.h"
  87. #include "torgzip.h"
  88. #include <event.h>
  89. /* These signals are defined to help control_signal_act work.
  90. */
  91. #ifndef SIGHUP
  92. #define SIGHUP 1
  93. #endif
  94. #ifndef SIGINT
  95. #define SIGINT 2
  96. #endif
  97. #ifndef SIGUSR1
  98. #define SIGUSR1 10
  99. #endif
  100. #ifndef SIGUSR2
  101. #define SIGUSR2 12
  102. #endif
  103. #ifndef SIGTERM
  104. #define SIGTERM 15
  105. #endif
  106. /* Controller signals start at a high number so we don't
  107. * conflict with system-defined signals. */
  108. #define SIGNEWNYM 129
  109. #define SIGCLEARDNSCACHE 130
  110. #if (SIZEOF_CELL_T != 0)
  111. /* On Irix, stdlib.h defines a cell_t type, so we need to make sure
  112. * that our stuff always calls cell_t something different. */
  113. #define cell_t tor_cell_t
  114. #endif
  115. /** Length of longest allowable configured nickname. */
  116. #define MAX_NICKNAME_LEN 19
  117. /** Length of a router identity encoded as a hexadecimal digest, plus
  118. * possible dollar sign. */
  119. #define MAX_HEX_NICKNAME_LEN (HEX_DIGEST_LEN+1)
  120. /** Maximum length of verbose router identifier: dollar sign, hex ID digest,
  121. * equal sign or tilde, nickname. */
  122. #define MAX_VERBOSE_NICKNAME_LEN (1+HEX_DIGEST_LEN+1+MAX_NICKNAME_LEN)
  123. /** Maximum size, in bytes, for resized buffers. */
  124. #define MAX_BUF_SIZE ((1<<24)-1) /* 16MB-1 */
  125. /** Maximum size, in bytes, for any directory object that we've downloaded. */
  126. #define MAX_DIR_DL_SIZE MAX_BUF_SIZE
  127. /** For http parsing: Maximum number of bytes we'll accept in the headers
  128. * of an HTTP request or response. */
  129. #define MAX_HEADERS_SIZE 50000
  130. /** Maximum size, in bytes, for any directory object that we're accepting
  131. * as an upload. */
  132. #define MAX_DIR_UL_SIZE 500000
  133. /** Maximum size, in bytes, of a single router descriptor uploaded to us
  134. * as a directory authority. Caches and clients fetch whatever descriptors
  135. * the authorities tell them to fetch, and don't care about size. */
  136. #define MAX_DESCRIPTOR_UPLOAD_SIZE 20000
  137. /** Maximum size of a single extrainfo document, as above. */
  138. #define MAX_EXTRAINFO_UPLOAD_SIZE 50000
  139. /** How long do we keep DNS cache entries before purging them (regardless of
  140. * their TTL)? */
  141. #define MAX_DNS_ENTRY_AGE (30*60)
  142. /** How long do we cache/tell clients to cache DNS records when no TTL is
  143. * known? */
  144. #define DEFAULT_DNS_TTL (30*60)
  145. /** How long can a TTL be before we stop believing it? */
  146. #define MAX_DNS_TTL (3*60*60)
  147. /** How small can a TTL be before we stop believing it? Provides rudimentary
  148. * pinning. */
  149. #define MIN_DNS_TTL (60)
  150. /** How often do we rotate onion keys? */
  151. #define MIN_ONION_KEY_LIFETIME (7*24*60*60)
  152. /** How often do we rotate TLS contexts? */
  153. #define MAX_SSL_KEY_LIFETIME (2*60*60)
  154. /** How old do we allow a router to get before removing it
  155. * from the router list? In seconds. */
  156. #define ROUTER_MAX_AGE (60*60*48)
  157. /** How old can a router get before we (as a server) will no longer
  158. * consider it live? In seconds. */
  159. #define ROUTER_MAX_AGE_TO_PUBLISH (60*60*20)
  160. /** How old do we let a saved descriptor get before force-removing it? */
  161. #define OLD_ROUTER_DESC_MAX_AGE (60*60*24*5)
  162. /** Possible rules for generating circuit IDs on an OR connection. */
  163. typedef enum {
  164. CIRC_ID_TYPE_LOWER=0, /**< Pick from 0..1<<15-1. */
  165. CIRC_ID_TYPE_HIGHER=1, /**< Pick from 1<<15..1<<16-1. */
  166. /** The other side of a connection is an OP: never create circuits to it,
  167. * and let it use any circuit ID it wants. */
  168. CIRC_ID_TYPE_NEITHER=2
  169. } circ_id_type_t;
  170. #define _CONN_TYPE_MIN 3
  171. /** Type for sockets listening for OR connections. */
  172. #define CONN_TYPE_OR_LISTENER 3
  173. /** A bidirectional TLS connection transmitting a sequence of cells.
  174. * May be from an OR to an OR, or from an OP to an OR. */
  175. #define CONN_TYPE_OR 4
  176. /** A TCP connection from an onion router to a stream's destination. */
  177. #define CONN_TYPE_EXIT 5
  178. /** Type for sockets listening for SOCKS connections. */
  179. #define CONN_TYPE_AP_LISTENER 6
  180. /** A SOCKS proxy connection from the user application to the onion
  181. * proxy. */
  182. #define CONN_TYPE_AP 7
  183. /** Type for sockets listening for HTTP connections to the directory server. */
  184. #define CONN_TYPE_DIR_LISTENER 8
  185. /** Type for HTTP connections to the directory server. */
  186. #define CONN_TYPE_DIR 9
  187. /** Connection from the main process to a CPU worker process. */
  188. #define CONN_TYPE_CPUWORKER 10
  189. /** Type for listening for connections from user interface process. */
  190. #define CONN_TYPE_CONTROL_LISTENER 11
  191. /** Type for connections from user interface process. */
  192. #define CONN_TYPE_CONTROL 12
  193. /** Type for sockets listening for transparent connections redirected by pf or
  194. * netfilter. */
  195. #define CONN_TYPE_AP_TRANS_LISTENER 13
  196. /** Type for sockets listening for transparent connections redirected by
  197. * natd. */
  198. #define CONN_TYPE_AP_NATD_LISTENER 14
  199. /** Type for sockets listening for DNS requests. */
  200. #define CONN_TYPE_AP_DNS_LISTENER 15
  201. #define _CONN_TYPE_MAX 15
  202. /* !!!! If _CONN_TYPE_MAX is ever over 15, we must grow the type field in
  203. * connection_t. */
  204. #define CONN_IS_EDGE(x) \
  205. ((x)->type == CONN_TYPE_EXIT || (x)->type == CONN_TYPE_AP)
  206. /** State for any listener connection. */
  207. #define LISTENER_STATE_READY 0
  208. #define _CPUWORKER_STATE_MIN 1
  209. /** State for a connection to a cpuworker process that's idle. */
  210. #define CPUWORKER_STATE_IDLE 1
  211. /** State for a connection to a cpuworker process that's processing a
  212. * handshake. */
  213. #define CPUWORKER_STATE_BUSY_ONION 2
  214. #define _CPUWORKER_STATE_MAX 2
  215. #define CPUWORKER_TASK_ONION CPUWORKER_STATE_BUSY_ONION
  216. #define _OR_CONN_STATE_MIN 1
  217. /** State for a connection to an OR: waiting for connect() to finish. */
  218. #define OR_CONN_STATE_CONNECTING 1
  219. /** State for a connection to an OR: waiting for proxy command to flush. */
  220. #define OR_CONN_STATE_PROXY_FLUSHING 2
  221. /** State for a connection to an OR: waiting for proxy response. */
  222. #define OR_CONN_STATE_PROXY_READING 3
  223. /** State for a connection to an OR: SSL is handshaking, not done yet. */
  224. #define OR_CONN_STATE_TLS_HANDSHAKING 4
  225. /** DOCDOC */
  226. #define OR_CONN_STATE_TLS_CLIENT_RENEGOTIATING 5
  227. /** DOCDOC */
  228. #define OR_CONN_STATE_TLS_SERVER_RENEGOTIATING 6
  229. /** State for a connection to an OR: We're done with our SSL handshake, but we
  230. * haven't yet negotiated link protocol versions and finished authenticating.
  231. */
  232. #define OR_CONN_STATE_OR_HANDSHAKING 7
  233. /** State for a connection to an OR: Ready to send/receive cells. */
  234. #define OR_CONN_STATE_OPEN 8
  235. #define _OR_CONN_STATE_MAX 8
  236. #define _EXIT_CONN_STATE_MIN 1
  237. /** State for an exit connection: waiting for response from dns farm. */
  238. #define EXIT_CONN_STATE_RESOLVING 1
  239. /** State for an exit connection: waiting for connect() to finish. */
  240. #define EXIT_CONN_STATE_CONNECTING 2
  241. /** State for an exit connection: open and ready to transmit data. */
  242. #define EXIT_CONN_STATE_OPEN 3
  243. /** State for an exit connection: waiting to be removed. */
  244. #define EXIT_CONN_STATE_RESOLVEFAILED 4
  245. #define _EXIT_CONN_STATE_MAX 4
  246. /* The AP state values must be disjoint from the EXIT state values. */
  247. #define _AP_CONN_STATE_MIN 5
  248. /** State for a SOCKS connection: waiting for SOCKS request. */
  249. #define AP_CONN_STATE_SOCKS_WAIT 5
  250. /** State for a SOCKS connection: got a y.onion URL; waiting to receive
  251. * rendezvous descriptor. */
  252. #define AP_CONN_STATE_RENDDESC_WAIT 6
  253. /** The controller will attach this connection to a circuit; it isn't our
  254. * job to do so. */
  255. #define AP_CONN_STATE_CONTROLLER_WAIT 7
  256. /** State for a SOCKS connection: waiting for a completed circuit. */
  257. #define AP_CONN_STATE_CIRCUIT_WAIT 8
  258. /** State for a SOCKS connection: sent BEGIN, waiting for CONNECTED. */
  259. #define AP_CONN_STATE_CONNECT_WAIT 9
  260. /** State for a SOCKS connection: sent RESOLVE, waiting for RESOLVED. */
  261. #define AP_CONN_STATE_RESOLVE_WAIT 10
  262. /** State for a SOCKS connection: ready to send and receive. */
  263. #define AP_CONN_STATE_OPEN 11
  264. /** State for a transparent natd connection: waiting for original
  265. * destination. */
  266. #define AP_CONN_STATE_NATD_WAIT 12
  267. #define _AP_CONN_STATE_MAX 12
  268. /** True iff the AP_CONN_STATE_* value <b>s</b> means that the corresponding
  269. * edge connection is not attached to any circuit. */
  270. #define AP_CONN_STATE_IS_UNATTACHED(s) \
  271. ((s) <= AP_CONN_STATE_CIRCUIT_WAIT || (s) == AP_CONN_STATE_NATD_WAIT)
  272. #define _DIR_CONN_STATE_MIN 1
  273. /** State for connection to directory server: waiting for connect(). */
  274. #define DIR_CONN_STATE_CONNECTING 1
  275. /** State for connection to directory server: sending HTTP request. */
  276. #define DIR_CONN_STATE_CLIENT_SENDING 2
  277. /** State for connection to directory server: reading HTTP response. */
  278. #define DIR_CONN_STATE_CLIENT_READING 3
  279. /** State for connection to directory server: happy and finished. */
  280. #define DIR_CONN_STATE_CLIENT_FINISHED 4
  281. /** State for connection at directory server: waiting for HTTP request. */
  282. #define DIR_CONN_STATE_SERVER_COMMAND_WAIT 5
  283. /** State for connection at directory server: sending HTTP response. */
  284. #define DIR_CONN_STATE_SERVER_WRITING 6
  285. #define _DIR_CONN_STATE_MAX 6
  286. /** True iff the purpose of <b>conn</b> means that it's a server-side
  287. * directory connection. */
  288. #define DIR_CONN_IS_SERVER(conn) ((conn)->purpose == DIR_PURPOSE_SERVER)
  289. #define _CONTROL_CONN_STATE_MIN 1
  290. /** State for a control connection: Authenticated and accepting v1 commands. */
  291. #define CONTROL_CONN_STATE_OPEN 1
  292. /** State for a control connection: Waiting for authentication; speaking
  293. * protocol v1. */
  294. #define CONTROL_CONN_STATE_NEEDAUTH 2
  295. #define _CONTROL_CONN_STATE_MAX 2
  296. #define _DIR_PURPOSE_MIN 1
  297. /** A connection to a directory server: download a directory. */
  298. #define DIR_PURPOSE_FETCH_DIR 1
  299. /** A connection to a directory server: download just the list
  300. * of running routers. */
  301. #define DIR_PURPOSE_FETCH_RUNNING_LIST 2
  302. /** A connection to a directory server: download a rendezvous
  303. * descriptor. */
  304. #define DIR_PURPOSE_FETCH_RENDDESC 3
  305. /** A connection to a directory server: set after a rendezvous
  306. * descriptor is downloaded. */
  307. #define DIR_PURPOSE_HAS_FETCHED_RENDDESC 4
  308. /** A connection to a directory server: download one or more network-status
  309. * objects */
  310. #define DIR_PURPOSE_FETCH_NETWORKSTATUS 5
  311. /** A connection to a directory server: download one or more server
  312. * descriptors. */
  313. #define DIR_PURPOSE_FETCH_SERVERDESC 6
  314. /** A connection to a directory server: download one or more extra-info
  315. * documents. */
  316. #define DIR_PURPOSE_FETCH_EXTRAINFO 7
  317. /** A connection to a directory server: upload a server descriptor. */
  318. #define DIR_PURPOSE_UPLOAD_DIR 8
  319. /** A connection to a directory server: upload a rendezvous
  320. * descriptor. */
  321. #define DIR_PURPOSE_UPLOAD_RENDDESC 9
  322. /** A connection to a directory server: upload a v3 networkstatus vote. */
  323. #define DIR_PURPOSE_UPLOAD_VOTE 10
  324. /** A connection to a directory server: upload a v3 consensus signature */
  325. #define DIR_PURPOSE_UPLOAD_SIGNATURES 11
  326. /** A connection to a directory server: download one or more network-status
  327. * objects */
  328. #define DIR_PURPOSE_FETCH_STATUS_VOTE 12
  329. /** A connection to a directory server: download one or more network-status
  330. * objects */
  331. #define DIR_PURPOSE_FETCH_DETACHED_SIGNATURES 13
  332. /** A connection to a directory server: download one or more network-status
  333. * objects */
  334. #define DIR_PURPOSE_FETCH_CONSENSUS 14
  335. /** A connection to a directory server: download one or more network-status
  336. * objects */
  337. #define DIR_PURPOSE_FETCH_CERTIFICATE 15
  338. /** Purpose for connection at a directory server. */
  339. #define DIR_PURPOSE_SERVER 16
  340. /** A connection to a hidden service directory server: upload a v2 rendezvous
  341. * descriptor. */
  342. #define DIR_PURPOSE_UPLOAD_RENDDESC_V2 17
  343. /** A connection to a hidden service directory server: download a v2 rendezvous
  344. * descriptor. */
  345. #define DIR_PURPOSE_FETCH_RENDDESC_V2 18
  346. #define _DIR_PURPOSE_MAX 18
  347. #define _EXIT_PURPOSE_MIN 1
  348. /** This exit stream wants to do an ordinary connect. */
  349. #define EXIT_PURPOSE_CONNECT 1
  350. /** This exit stream wants to do a resolve (either normal or reverse). */
  351. #define EXIT_PURPOSE_RESOLVE 2
  352. #define _EXIT_PURPOSE_MAX 2
  353. /* !!!! If any connection purpose is ever over over 31, we must grow the type
  354. * field in connection_t. */
  355. /** Circuit state: I'm the origin, still haven't done all my handshakes. */
  356. #define CIRCUIT_STATE_BUILDING 0
  357. /** Circuit state: Waiting to process the onionskin. */
  358. #define CIRCUIT_STATE_ONIONSKIN_PENDING 1
  359. /** Circuit state: I'd like to deliver a create, but my n_conn is still
  360. * connecting. */
  361. #define CIRCUIT_STATE_OR_WAIT 2
  362. /** Circuit state: onionskin(s) processed, ready to send/receive cells. */
  363. #define CIRCUIT_STATE_OPEN 3
  364. #define _CIRCUIT_PURPOSE_MIN 1
  365. /* these circuits were initiated elsewhere */
  366. #define _CIRCUIT_PURPOSE_OR_MIN 1
  367. /** OR-side circuit purpose: normal circuit, at OR. */
  368. #define CIRCUIT_PURPOSE_OR 1
  369. /** OR-side circuit purpose: At OR, from Bob, waiting for intro from Alices. */
  370. #define CIRCUIT_PURPOSE_INTRO_POINT 2
  371. /** OR-side circuit purpose: At OR, from Alice, waiting for Bob. */
  372. #define CIRCUIT_PURPOSE_REND_POINT_WAITING 3
  373. /** OR-side circuit purpose: At OR, both circuits have this purpose. */
  374. #define CIRCUIT_PURPOSE_REND_ESTABLISHED 4
  375. #define _CIRCUIT_PURPOSE_OR_MAX 4
  376. /* these circuits originate at this node */
  377. /* here's how circ client-side purposes work:
  378. * normal circuits are C_GENERAL.
  379. * circuits that are c_introducing are either on their way to
  380. * becoming open, or they are open and waiting for a
  381. * suitable rendcirc before they send the intro.
  382. * circuits that are c_introduce_ack_wait have sent the intro,
  383. * but haven't gotten a response yet.
  384. * circuits that are c_establish_rend are either on their way
  385. * to becoming open, or they are open and have sent the
  386. * establish_rendezvous cell but haven't received an ack.
  387. * circuits that are c_rend_ready are open and have received a
  388. * rend ack, but haven't heard from bob yet. if they have a
  389. * buildstate->pending_final_cpath then they're expecting a
  390. * cell from bob, else they're not.
  391. * circuits that are c_rend_ready_intro_acked are open, and
  392. * some intro circ has sent its intro and received an ack.
  393. * circuits that are c_rend_joined are open, have heard from
  394. * bob, and are talking to him.
  395. */
  396. /** Client-side circuit purpose: Normal circuit, with cpath. */
  397. #define CIRCUIT_PURPOSE_C_GENERAL 5
  398. /** Client-side circuit purpose: at Alice, connecting to intro point. */
  399. #define CIRCUIT_PURPOSE_C_INTRODUCING 6
  400. /** Client-side circuit purpose: at Alice, sent INTRODUCE1 to intro point,
  401. * waiting for ACK/NAK. */
  402. #define CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT 7
  403. /** Client-side circuit purpose: at Alice, introduced and acked, closing. */
  404. #define CIRCUIT_PURPOSE_C_INTRODUCE_ACKED 8
  405. /** Client-side circuit purpose: at Alice, waiting for ack. */
  406. #define CIRCUIT_PURPOSE_C_ESTABLISH_REND 9
  407. /** Client-side circuit purpose: at Alice, waiting for Bob. */
  408. #define CIRCUIT_PURPOSE_C_REND_READY 10
  409. /** Client-side circuit purpose: at Alice, waiting for Bob, INTRODUCE
  410. * has been acknowledged. */
  411. #define CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED 11
  412. /** Client-side circuit purpose: at Alice, rendezvous established. */
  413. #define CIRCUIT_PURPOSE_C_REND_JOINED 12
  414. /** Hidden-service-side circuit purpose: at Bob, waiting for introductions. */
  415. #define CIRCUIT_PURPOSE_S_ESTABLISH_INTRO 13
  416. /** Hidden-service-side circuit purpose: at Bob, successfully established
  417. * intro. */
  418. #define CIRCUIT_PURPOSE_S_INTRO 14
  419. /** Hidden-service-side circuit purpose: at Bob, connecting to rend point. */
  420. #define CIRCUIT_PURPOSE_S_CONNECT_REND 15
  421. /** Hidden-service-side circuit purpose: at Bob, rendezvous established. */
  422. #define CIRCUIT_PURPOSE_S_REND_JOINED 16
  423. /** A testing circuit; not meant to be used for actual traffic. */
  424. #define CIRCUIT_PURPOSE_TESTING 17
  425. /** A controller made this circuit and Tor should not use it. */
  426. #define CIRCUIT_PURPOSE_CONTROLLER 18
  427. #define _CIRCUIT_PURPOSE_MAX 18
  428. /** A catch-all for unrecognized purposes. Currently we don't expect
  429. * to make or see any circuits with this purpose. */
  430. #define CIRCUIT_PURPOSE_UNKNOWN 255
  431. /** True iff the circuit purpose <b>p</b> is for a circuit that
  432. * originated at this node. */
  433. #define CIRCUIT_PURPOSE_IS_ORIGIN(p) ((p)>_CIRCUIT_PURPOSE_OR_MAX)
  434. #define CIRCUIT_IS_ORIGIN(c) (CIRCUIT_PURPOSE_IS_ORIGIN((c)->purpose))
  435. /** How many circuits do we want simultaneously in-progress to handle
  436. * a given stream? */
  437. #define MIN_CIRCUITS_HANDLING_STREAM 2
  438. #define RELAY_COMMAND_BEGIN 1
  439. #define RELAY_COMMAND_DATA 2
  440. #define RELAY_COMMAND_END 3
  441. #define RELAY_COMMAND_CONNECTED 4
  442. #define RELAY_COMMAND_SENDME 5
  443. #define RELAY_COMMAND_EXTEND 6
  444. #define RELAY_COMMAND_EXTENDED 7
  445. #define RELAY_COMMAND_TRUNCATE 8
  446. #define RELAY_COMMAND_TRUNCATED 9
  447. #define RELAY_COMMAND_DROP 10
  448. #define RELAY_COMMAND_RESOLVE 11
  449. #define RELAY_COMMAND_RESOLVED 12
  450. #define RELAY_COMMAND_BEGIN_DIR 13
  451. #define RELAY_COMMAND_ESTABLISH_INTRO 32
  452. #define RELAY_COMMAND_ESTABLISH_RENDEZVOUS 33
  453. #define RELAY_COMMAND_INTRODUCE1 34
  454. #define RELAY_COMMAND_INTRODUCE2 35
  455. #define RELAY_COMMAND_RENDEZVOUS1 36
  456. #define RELAY_COMMAND_RENDEZVOUS2 37
  457. #define RELAY_COMMAND_INTRO_ESTABLISHED 38
  458. #define RELAY_COMMAND_RENDEZVOUS_ESTABLISHED 39
  459. #define RELAY_COMMAND_INTRODUCE_ACK 40
  460. /* Reasons why an OR connection is closed */
  461. #define END_OR_CONN_REASON_DONE 1
  462. #define END_OR_CONN_REASON_TCP_REFUSED 2
  463. #define END_OR_CONN_REASON_OR_IDENTITY 3
  464. #define END_OR_CONN_REASON_TLS_CONNRESET 4 /* tls connection reset by peer */
  465. #define END_OR_CONN_REASON_TLS_TIMEOUT 5
  466. #define END_OR_CONN_REASON_TLS_NO_ROUTE 6 /* no route to host/net */
  467. #define END_OR_CONN_REASON_TLS_IO_ERROR 7 /* tls read/write error */
  468. #define END_OR_CONN_REASON_TLS_MISC 8
  469. /* Reasons why we (or a remote OR) might close a stream. See tor-spec.txt for
  470. * documentation of these. */
  471. #define END_STREAM_REASON_MISC 1
  472. #define END_STREAM_REASON_RESOLVEFAILED 2
  473. #define END_STREAM_REASON_CONNECTREFUSED 3
  474. #define END_STREAM_REASON_EXITPOLICY 4
  475. #define END_STREAM_REASON_DESTROY 5
  476. #define END_STREAM_REASON_DONE 6
  477. #define END_STREAM_REASON_TIMEOUT 7
  478. /* 8 is unallocated for historical reasons. */
  479. #define END_STREAM_REASON_HIBERNATING 9
  480. #define END_STREAM_REASON_INTERNAL 10
  481. #define END_STREAM_REASON_RESOURCELIMIT 11
  482. #define END_STREAM_REASON_CONNRESET 12
  483. #define END_STREAM_REASON_TORPROTOCOL 13
  484. #define END_STREAM_REASON_NOTDIRECTORY 14
  485. #define END_STREAM_REASON_ENTRYPOLICY 15
  486. /* These high-numbered end reasons are not part of the official spec,
  487. * and are not intended to be put in relay end cells. They are here
  488. * to be more informative when sending back socks replies to the
  489. * application. */
  490. /* XXXX 256 is no longer used; feel free to reuse it. */
  491. /** We were unable to attach the connection to any circuit at all. */
  492. /* XXXX the ways we use this one don't make a lot of sense. */
  493. #define END_STREAM_REASON_CANT_ATTACH 257
  494. /** We can't connect to any directories at all, so we killed our streams
  495. * before they can time out. */
  496. #define END_STREAM_REASON_NET_UNREACHABLE 258
  497. /** This is a SOCKS connection, and the client used (or misused) the SOCKS
  498. * protocol in a way we couldn't handle. */
  499. #define END_STREAM_REASON_SOCKSPROTOCOL 259
  500. /** This is a transparent proxy connection, but we can't extract the original
  501. * target address:port. */
  502. #define END_STREAM_REASON_CANT_FETCH_ORIG_DEST 260
  503. /** This is a connection on the NATD port, and the destination IP:Port was
  504. * either ill-formed or out-of-range. */
  505. #define END_STREAM_REASON_INVALID_NATD_DEST 261
  506. /** Bitwise-and this value with endreason to mask out all flags. */
  507. #define END_STREAM_REASON_MASK 511
  508. /** Bitwise-or this with the argument to control_event_stream_status
  509. * to indicate that the reason came from an END cell. */
  510. #define END_STREAM_REASON_FLAG_REMOTE 512
  511. /** Bitwise-or this with the argument to control_event_stream_status
  512. * to indicate that we already sent a CLOSED stream event. */
  513. #define END_STREAM_REASON_FLAG_ALREADY_SENT_CLOSED 1024
  514. /** Bitwise-or this with endreason to indicate that we already sent
  515. * a socks reply, and no further reply needs to be sent from
  516. * connection_mark_unattached_ap(). */
  517. #define END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED 2048
  518. /** Reason for remapping an AP connection's address: we have a cached
  519. * answer. */
  520. #define REMAP_STREAM_SOURCE_CACHE 1
  521. /** Reason for remapping an AP connection's address: the exit node told us an
  522. * answer. */
  523. #define REMAP_STREAM_SOURCE_EXIT 2
  524. /* 'type' values to use in RESOLVED cells. Specified in tor-spec.txt. */
  525. #define RESOLVED_TYPE_HOSTNAME 0
  526. #define RESOLVED_TYPE_IPV4 4
  527. #define RESOLVED_TYPE_IPV6 6
  528. #define RESOLVED_TYPE_ERROR_TRANSIENT 0xF0
  529. #define RESOLVED_TYPE_ERROR 0xF1
  530. /* Negative reasons are internal: we never send them in a DESTROY or TRUNCATE
  531. * call; they only go to the controller for tracking */
  532. /** We couldn't build a path for this circuit. */
  533. #define END_CIRC_REASON_NOPATH -2
  534. /** Catch-all "other" reason for closing origin circuits. */
  535. #define END_CIRC_AT_ORIGIN -1
  536. /* Reasons why we (or a remote OR) might close a circuit. See tor-spec.txt for
  537. * documentation of these. */
  538. #define _END_CIRC_REASON_MIN 0
  539. #define END_CIRC_REASON_NONE 0
  540. #define END_CIRC_REASON_TORPROTOCOL 1
  541. #define END_CIRC_REASON_INTERNAL 2
  542. #define END_CIRC_REASON_REQUESTED 3
  543. #define END_CIRC_REASON_HIBERNATING 4
  544. #define END_CIRC_REASON_RESOURCELIMIT 5
  545. #define END_CIRC_REASON_CONNECTFAILED 6
  546. #define END_CIRC_REASON_OR_IDENTITY 7
  547. #define END_CIRC_REASON_OR_CONN_CLOSED 8
  548. #define END_CIRC_REASON_FINISHED 9
  549. #define END_CIRC_REASON_TIMEOUT 10
  550. #define END_CIRC_REASON_DESTROYED 11
  551. #define END_CIRC_REASON_NOSUCHSERVICE 12
  552. #define _END_CIRC_REASON_MAX 12
  553. /** Bitwise-OR this with the argument to circuit_mark_for_close() or
  554. * control_event_circuit_status() to indicate that the reason was
  555. * passed through from a destroy or truncate cell. */
  556. #define END_CIRC_REASON_FLAG_REMOTE 512
  557. /** Length of 'y' portion of 'y.onion' URL. */
  558. #define REND_SERVICE_ID_LEN_BASE32 16
  559. /** Length of a binary-encoded rendezvous service ID. */
  560. #define REND_SERVICE_ID_LEN 10
  561. /** Time period for which a v2 descriptor will be valid. */
  562. #define REND_TIME_PERIOD_V2_DESC_VALIDITY (24*60*60)
  563. /** Time period within which two sets of v2 descriptors will be uploaded in
  564. * parallel. */
  565. #define REND_TIME_PERIOD_OVERLAPPING_V2_DESCS (60*60)
  566. /** Number of non-consecutive replicas (i.e. distributed somewhere
  567. * in the ring) for a descriptor. */
  568. #define REND_NUMBER_OF_NON_CONSECUTIVE_REPLICAS 2
  569. /** Number of consecutive replicas for a descriptor. */
  570. #define REND_NUMBER_OF_CONSECUTIVE_REPLICAS 3
  571. /** Length of v2 descriptor ID (32 base32 chars = 160 bits). */
  572. #define REND_DESC_ID_V2_LEN_BASE32 32
  573. /** Length of the base32-encoded secret ID part of versioned hidden service
  574. * descriptors. */
  575. #define REND_SECRET_ID_PART_LEN_BASE32 32
  576. /** Length of the base32-encoded hash of an introduction point's
  577. * identity key. */
  578. #define REND_INTRO_POINT_ID_LEN_BASE32 32
  579. #define CELL_DIRECTION_IN 1
  580. #define CELL_DIRECTION_OUT 2
  581. #ifdef TOR_PERF
  582. #define CIRCWINDOW_START 10000
  583. #define CIRCWINDOW_INCREMENT 1000
  584. #define STREAMWINDOW_START 5000
  585. #define STREAMWINDOW_INCREMENT 500
  586. #else
  587. /** Initial value for both sides of a circuit transmission window when the
  588. * circuit is initialized. Measured in cells. */
  589. #define CIRCWINDOW_START 1000
  590. /** Amount to increment a circuit window when we get a circuit SENDME. */
  591. #define CIRCWINDOW_INCREMENT 100
  592. /** Initial value on both sides of a stream transmission window when the
  593. * stream is initialized. Measured in cells. */
  594. #define STREAMWINDOW_START 500
  595. /** Amount to increment a stream window when we get a stream SENDME. */
  596. #define STREAMWINDOW_INCREMENT 50
  597. #endif
  598. /* cell commands */
  599. #define CELL_PADDING 0
  600. #define CELL_CREATE 1
  601. #define CELL_CREATED 2
  602. #define CELL_RELAY 3
  603. #define CELL_DESTROY 4
  604. #define CELL_CREATE_FAST 5
  605. #define CELL_CREATED_FAST 6
  606. #define CELL_VERSIONS 7
  607. #define CELL_NETINFO 8
  608. #define CELL_RELAY_EARLY 9
  609. #define CELL_COMMAND_IS_VAR_LENGTH(x) ((x) == CELL_VERSIONS)
  610. /** How long to test reachability before complaining to the user. */
  611. #define TIMEOUT_UNTIL_UNREACHABILITY_COMPLAINT (20*60)
  612. /** Legal characters in a nickname. */
  613. #define LEGAL_NICKNAME_CHARACTERS \
  614. "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
  615. /** Name to use in client TLS certificates if no nickname is given. */
  616. #define DEFAULT_CLIENT_NICKNAME "client"
  617. /** Number of bytes in a SOCKS4 header. */
  618. #define SOCKS4_NETWORK_LEN 8
  619. /** Specified SOCKS5 status codes. */
  620. typedef enum {
  621. SOCKS5_SUCCEEDED = 0x00,
  622. SOCKS5_GENERAL_ERROR = 0x01,
  623. SOCKS5_NOT_ALLOWED = 0x02,
  624. SOCKS5_NET_UNREACHABLE = 0x03,
  625. SOCKS5_HOST_UNREACHABLE = 0x04,
  626. SOCKS5_CONNECTION_REFUSED = 0x05,
  627. SOCKS5_TTL_EXPIRED = 0x06,
  628. SOCKS5_COMMAND_NOT_SUPPORTED = 0x07,
  629. SOCKS5_ADDRESS_TYPE_NOT_SUPPORTED = 0x08,
  630. } socks5_reply_status_t;
  631. /*
  632. * Relay payload:
  633. * Relay command [1 byte]
  634. * Recognized [2 bytes]
  635. * Stream ID [2 bytes]
  636. * Partial SHA-1 [4 bytes]
  637. * Length [2 bytes]
  638. * Relay payload [498 bytes]
  639. */
  640. /** Number of bytes in a cell, minus cell header. */
  641. #define CELL_PAYLOAD_SIZE 509
  642. /** Number of bytes in a cell transmitted over the network. */
  643. #define CELL_NETWORK_SIZE 512
  644. #define VAR_CELL_HEADER_SIZE 5
  645. /** Number of bytes in a relay cell's header (not including general cell
  646. * header). */
  647. #define RELAY_HEADER_SIZE (1+2+2+4+2)
  648. /** Largest number of bytes that can fit in a relay cell payload. */
  649. #define RELAY_PAYLOAD_SIZE (CELL_PAYLOAD_SIZE-RELAY_HEADER_SIZE)
  650. /** Parsed onion routing cell. All communication between nodes
  651. * is via cells. */
  652. typedef struct cell_t {
  653. uint16_t circ_id; /**< Circuit which received the cell. */
  654. uint8_t command; /**< Type of the cell: one of CELL_PADDING, CELL_CREATE,
  655. * CELL_DESTROY, etc */
  656. char payload[CELL_PAYLOAD_SIZE]; /**< Cell body. */
  657. } cell_t;
  658. /** Parsed variable-length onion routing cell. */
  659. typedef struct var_cell_t {
  660. uint8_t command;
  661. uint16_t circ_id;
  662. uint16_t payload_len;
  663. char payload[1];
  664. } var_cell_t;
  665. /** A cell as packed for writing to the network. */
  666. typedef struct packed_cell_t {
  667. struct packed_cell_t *next; /**< Next cell queued on this circuit. */
  668. char body[CELL_NETWORK_SIZE]; /**< Cell as packed for network. */
  669. } packed_cell_t;
  670. /** A queue of cells on a circuit, waiting to be added to the
  671. * or_connection_t's outbuf. */
  672. typedef struct cell_queue_t {
  673. packed_cell_t *head; /**< The first cell, or NULL if the queue is empty. */
  674. packed_cell_t *tail; /**< The last cell, or NULL if the queue is empty. */
  675. int n; /**< The number of cells in the queue. */
  676. } cell_queue_t;
  677. /** Beginning of a RELAY cell payload. */
  678. typedef struct {
  679. uint8_t command; /**< The end-to-end relay command. */
  680. uint16_t recognized; /**< Used to tell whether cell is for us. */
  681. uint16_t stream_id; /**< Which stream is this cell associated with? */
  682. char integrity[4]; /**< Used to tell whether cell is corrupted. */
  683. uint16_t length; /**< How long is the payload body? */
  684. } relay_header_t;
  685. typedef struct buf_t buf_t;
  686. typedef struct socks_request_t socks_request_t;
  687. /* Values for connection_t.magic: used to make sure that downcasts (casts from
  688. * connection_t to foo_connection_t) are safe. */
  689. #define BASE_CONNECTION_MAGIC 0x7C3C304Eu
  690. #define OR_CONNECTION_MAGIC 0x7D31FF03u
  691. #define EDGE_CONNECTION_MAGIC 0xF0374013u
  692. #define DIR_CONNECTION_MAGIC 0x9988ffeeu
  693. #define CONTROL_CONNECTION_MAGIC 0x8abc765du
  694. /** Description of a connection to another host or process, and associated
  695. * data.
  696. *
  697. * A connection is named based on what it's connected to -- an "OR
  698. * connection" has a Tor node on the other end, an "exit
  699. * connection" has a website or other server on the other end, and an
  700. * "AP connection" has an application proxy (and thus a user) on the
  701. * other end.
  702. *
  703. * Every connection has a type and a state. Connections never change
  704. * their type, but can go through many state changes in their lifetime.
  705. *
  706. * Every connection has two associated input and output buffers.
  707. * Listeners don't use them. For non-listener connections, incoming
  708. * data is appended to conn->inbuf, and outgoing data is taken from
  709. * conn->outbuf. Connections differ primarily in the functions called
  710. * to fill and drain these buffers.
  711. */
  712. typedef struct connection_t {
  713. uint32_t magic; /**< For memory debugging: must equal one of
  714. * *_CONNECTION_MAGIC. */
  715. uint8_t state; /**< Current state of this connection. */
  716. uint8_t type:4; /**< What kind of connection is this? */
  717. uint8_t purpose:5; /**< Only used for DIR and EXIT types currently. */
  718. /* The next fields are all one-bit booleans. Some are only applicable to
  719. * connection subtypes, but we hold them here anyway, to save space.
  720. */
  721. unsigned read_blocked_on_bw:1; /**< Boolean: should we start reading again
  722. * once the bandwidth throttler allows it? */
  723. unsigned write_blocked_on_bw:1; /**< Boolean: should we start writing again
  724. * once the bandwidth throttler allows reads? */
  725. unsigned hold_open_until_flushed:1; /**< Despite this connection's being
  726. * marked for close, do we flush it
  727. * before closing it? */
  728. unsigned int inbuf_reached_eof:1; /**< Boolean: did read() return 0 on this
  729. * conn? */
  730. unsigned int edge_has_sent_end:1; /**< For debugging; only used on edge
  731. * connections. Set once we've set the stream end,
  732. * and check in connection_about_to_close_connection().
  733. */
  734. /** Edge connections only: true if we've blocked reading until the
  735. * circuit has fewer queued cells. */
  736. unsigned int edge_blocked_on_circ:1;
  737. /** Used for OR conns that shouldn't get any new circs attached to them. */
  738. unsigned int or_is_obsolete:1;
  739. /** For AP connections only. If 1, and we fail to reach the chosen exit,
  740. * stop requiring it. */
  741. unsigned int chosen_exit_optional:1;
  742. /** Set to 1 when we're inside connection_flushed_some to keep us from
  743. * calling connection_handle_write() recursively. */
  744. unsigned int in_flushed_some:1;
  745. /* For linked connections:
  746. */
  747. unsigned int linked:1; /**< True if there is, or has been, a linked_conn. */
  748. /** True iff we'd like to be notified about read events from the
  749. * linked conn. */
  750. unsigned int reading_from_linked_conn:1;
  751. /** True iff we're willing to write to the linked conn. */
  752. unsigned int writing_to_linked_conn:1;
  753. /** True iff we're currently able to read on the linked conn, and our
  754. * read_event should be made active with libevent. */
  755. unsigned int active_on_link:1;
  756. /** True iff we've called connection_close_immediate() on this linked
  757. * connection. */
  758. unsigned int linked_conn_is_closed:1;
  759. int s; /**< Our socket; -1 if this connection is closed, or has no
  760. * socket. */
  761. int conn_array_index; /**< Index into the global connection array. */
  762. struct event *read_event; /**< Libevent event structure. */
  763. struct event *write_event; /**< Libevent event structure. */
  764. buf_t *inbuf; /**< Buffer holding data read over this connection. */
  765. buf_t *outbuf; /**< Buffer holding data to write over this connection. */
  766. size_t outbuf_flushlen; /**< How much data should we try to flush from the
  767. * outbuf? */
  768. time_t timestamp_lastread; /**< When was the last time libevent said we could
  769. * read? */
  770. time_t timestamp_lastwritten; /**< When was the last time libevent said we
  771. * could write? */
  772. time_t timestamp_created; /**< When was this connection_t created? */
  773. /* XXXX_IP6 make this ipv6-capable */
  774. int socket_family; /**< Address family of this connection's socket. Usually
  775. * AF_INET, but it can also be AF_UNIX, or in the future
  776. * AF_INET6 */
  777. uint32_t addr; /**< IP of the other side of the connection; used to identify
  778. * routers, along with port. */
  779. uint16_t port; /**< If non-zero, port on the other end
  780. * of the connection. */
  781. uint16_t marked_for_close; /**< Should we close this conn on the next
  782. * iteration of the main loop? (If true, holds
  783. * the line number where this connection was
  784. * marked.) */
  785. const char *marked_for_close_file; /**< For debugging: in which file were
  786. * we marked for close? */
  787. char *address; /**< FQDN (or IP) of the guy on the other end.
  788. * strdup into this, because free_connection frees it. */
  789. /** Annother connection that's connected to this one in lieu of a socket. */
  790. struct connection_t *linked_conn;
  791. /* XXXX020 move this into a subtype!!! */
  792. struct evdns_server_port *dns_server_port;
  793. } connection_t;
  794. /** DOCDOC */
  795. typedef struct or_handshake_state_t {
  796. time_t sent_versions_at;
  797. unsigned int started_here : 1;
  798. unsigned int received_versions : 1;
  799. unsigned int received_netinfo : 1;
  800. /* from netinfo */
  801. long apparent_skew;
  802. uint32_t my_apparent_addr;
  803. unsigned int apparently_canonical;
  804. } or_handshake_state_t;
  805. /** Subtype of connection_t for an "OR connection" -- that is, one that speaks
  806. * cells over TLS. */
  807. typedef struct or_connection_t {
  808. connection_t _base;
  809. /** Hash of the public RSA key for the other side's identity key, or zeroes
  810. * if the other side hasn't shown us a valid identity key. */
  811. char identity_digest[DIGEST_LEN];
  812. char *nickname; /**< Nickname of OR on other side (if any). */
  813. tor_tls_t *tls; /**< TLS connection state. */
  814. int tls_error; /**< Last tor_tls error code. */
  815. /** When we last used this conn for any client traffic. If not
  816. * recent, we can rate limit it further. */
  817. time_t client_used;
  818. uint32_t real_addr; /**DOCDOC */
  819. circ_id_type_t circ_id_type:2; /**< When we send CREATE cells along this
  820. * connection, which half of the space should
  821. * we use? */
  822. unsigned int is_canonical:1; /**< DOCDOC */
  823. unsigned int have_renegotiated:1; /**DOCDOC */
  824. uint8_t link_proto; /**< What protocol version are we using? 0 for
  825. * "none negotiated yet." */
  826. uint16_t next_circ_id; /**< Which circ_id do we try to use next on
  827. * this connection? This is always in the
  828. * range 0..1<<15-1. */
  829. or_handshake_state_t *handshake_state;/**< DOCDOC */
  830. time_t timestamp_lastempty; /**< When was the outbuf last completely empty?*/
  831. time_t timestamp_last_added_nonpadding; /** When did we last add a
  832. * non-padding cell to the outbuf? */
  833. /* bandwidth* and read_bucket only used by ORs in OPEN state: */
  834. int bandwidthrate; /**< Bytes/s added to the bucket. (OPEN ORs only.) */
  835. int bandwidthburst; /**< Max bucket size for this conn. (OPEN ORs only.) */
  836. int read_bucket; /**< When this hits 0, stop receiving. Every second we
  837. * add 'bandwidthrate' to this, capping it at
  838. * bandwidthburst. (OPEN ORs only) */
  839. int n_circuits; /**< How many circuits use this connection as p_conn or
  840. * n_conn ? */
  841. /** Double-linked ring of circuits with queued cells waiting for room to
  842. * free up on this connection's outbuf. Every time we pull cells from a
  843. * circuit, we advance this pointer to the next circuit in the ring. */
  844. struct circuit_t *active_circuits;
  845. struct or_connection_t *next_with_same_id; /**< Next connection with same
  846. * identity digest as this one. */
  847. } or_connection_t;
  848. /** Subtype of connection_t for an "edge connection" -- that is, a socks (ap)
  849. * connection, or an exit. */
  850. typedef struct edge_connection_t {
  851. connection_t _base;
  852. struct edge_connection_t *next_stream; /**< Points to the next stream at this
  853. * edge, if any */
  854. struct crypt_path_t *cpath_layer; /**< A pointer to which node in the circ
  855. * this conn exits at. */
  856. int package_window; /**< How many more relay cells can I send into the
  857. * circuit? */
  858. int deliver_window; /**< How many more relay cells can end at me? */
  859. /** Nickname of planned exit node -- used with .exit support. */
  860. char *chosen_exit_name;
  861. socks_request_t *socks_request; /**< SOCKS structure describing request (AP
  862. * only.) */
  863. struct circuit_t *on_circuit; /**< The circuit (if any) that this edge
  864. * connection is using. */
  865. uint32_t address_ttl; /**< TTL for address-to-addr mapping on exit
  866. * connection. Exit connections only. */
  867. uint16_t stream_id; /**< The stream ID used for this edge connection on its
  868. * circuit */
  869. /** The reason why this connection is closing; passed to the controller. */
  870. uint16_t end_reason;
  871. /** Quasi-global identifier for this connection; used for control.c */
  872. /* XXXX NM This can get re-used after 2**32 streams */
  873. uint32_t global_identifier;
  874. /** Bytes read since last call to control_event_stream_bandwidth_used() */
  875. uint32_t n_read;
  876. /** Bytes written since last call to control_event_stream_bandwidth_used() */
  877. uint32_t n_written;
  878. /** What rendezvous service are we querying for? (AP only) */
  879. char rend_query[REND_SERVICE_ID_LEN_BASE32+1];
  880. /** Number of times we've reassigned this application connection to
  881. * a new circuit. We keep track because the timeout is longer if we've
  882. * already retried several times. */
  883. uint8_t num_socks_retries;
  884. /** True iff this connection is for a dns request only. */
  885. unsigned int is_dns_request : 1;
  886. /** True iff this stream must attach to a one-hop circuit (e.g. for
  887. * begin_dir). */
  888. int want_onehop:1;
  889. /** True iff this stream should use a BEGIN_DIR relay command to establish
  890. * itself rather than BEGIN (either via onehop or via a whole circuit). */
  891. int use_begindir:1;
  892. /** If this is a DNSPort connection, this field holds the pending DNS
  893. * request that we're going to try to answer. */
  894. struct evdns_server_request *dns_server_request;
  895. } edge_connection_t;
  896. /** Subtype of connection_t for an "directory connection" -- that is, an HTTP
  897. * connection to retrieve or serve directory material. */
  898. typedef struct dir_connection_t {
  899. connection_t _base;
  900. char *requested_resource; /**< Which 'resource' did we ask the directory
  901. * for? */
  902. unsigned int dirconn_direct:1; /**< Is this dirconn direct, or via Tor? */
  903. /* Used only for server sides of some dir connections, to implement
  904. * "spooling" of directory material to the outbuf. Otherwise, we'd have
  905. * to append everything to the outbuf in one enormous chunk. */
  906. /** What exactly are we spooling right now? */
  907. enum {
  908. DIR_SPOOL_NONE=0, DIR_SPOOL_SERVER_BY_DIGEST, DIR_SPOOL_SERVER_BY_FP,
  909. DIR_SPOOL_EXTRA_BY_DIGEST, DIR_SPOOL_EXTRA_BY_FP,
  910. DIR_SPOOL_CACHED_DIR, DIR_SPOOL_NETWORKSTATUS
  911. } dir_spool_src : 3;
  912. /** If we're fetching descriptors, what router purpose shall we assign
  913. * to them? */
  914. uint8_t router_purpose;
  915. /** List of fingerprints for networkstatuses or desriptors to be spooled. */
  916. smartlist_t *fingerprint_stack;
  917. /** A cached_dir_t object that we're currently spooling out */
  918. struct cached_dir_t *cached_dir;
  919. /** The current offset into cached_dir. */
  920. off_t cached_dir_offset;
  921. /** The zlib object doing on-the-fly compression for spooled data. */
  922. tor_zlib_state_t *zlib_state;
  923. /** What rendezvous service are we querying for? */
  924. char rend_query[REND_SERVICE_ID_LEN_BASE32+1];
  925. char identity_digest[DIGEST_LEN]; /**< Hash of the public RSA key for
  926. * the directory server's signing key. */
  927. } dir_connection_t;
  928. /** Subtype of connection_t for an connection to a controller. */
  929. typedef struct control_connection_t {
  930. connection_t _base;
  931. uint32_t event_mask; /**< Bitfield: which events does this controller
  932. * care about? */
  933. unsigned int use_long_names:1; /**< True if we should use long nicknames
  934. * on this (v1) connection. Only settable
  935. * via v1 controllers. */
  936. /** For control connections only. If set, we send extended info with control
  937. * events as appropriate. */
  938. unsigned int use_extended_events:1;
  939. /** True if we have sent a protocolinfo reply on this connection. */
  940. unsigned int have_sent_protocolinfo:1;
  941. uint32_t incoming_cmd_len;
  942. uint32_t incoming_cmd_cur_len;
  943. char *incoming_cmd;
  944. /* Used only by control v0 connections */
  945. uint16_t incoming_cmd_type;
  946. } control_connection_t;
  947. /** Cast a connection_t subtype pointer to a connection_t **/
  948. #define TO_CONN(c) (&(((c)->_base)))
  949. /** Helper macro: Given a pointer to to._base, of type from*, return &to. */
  950. #define DOWNCAST(to, ptr) ((to*)SUBTYPE_P(ptr, to, _base))
  951. /** Convert a connection_t* to an or_connection_t*; assert if the cast is
  952. * invalid. */
  953. static or_connection_t *TO_OR_CONN(connection_t *);
  954. /** Convert a connection_t* to a dir_connection_t*; assert if the cast is
  955. * invalid. */
  956. static dir_connection_t *TO_DIR_CONN(connection_t *);
  957. /** Convert a connection_t* to an edge_connection_t*; assert if the cast is
  958. * invalid. */
  959. static edge_connection_t *TO_EDGE_CONN(connection_t *);
  960. /** Convert a connection_t* to an control_connection_t*; assert if the cast is
  961. * invalid. */
  962. static control_connection_t *TO_CONTROL_CONN(connection_t *);
  963. static INLINE or_connection_t *TO_OR_CONN(connection_t *c)
  964. {
  965. tor_assert(c->magic == OR_CONNECTION_MAGIC);
  966. return DOWNCAST(or_connection_t, c);
  967. }
  968. static INLINE dir_connection_t *TO_DIR_CONN(connection_t *c)
  969. {
  970. tor_assert(c->magic == DIR_CONNECTION_MAGIC);
  971. return DOWNCAST(dir_connection_t, c);
  972. }
  973. static INLINE edge_connection_t *TO_EDGE_CONN(connection_t *c)
  974. {
  975. tor_assert(c->magic == EDGE_CONNECTION_MAGIC);
  976. return DOWNCAST(edge_connection_t, c);
  977. }
  978. static INLINE control_connection_t *TO_CONTROL_CONN(connection_t *c)
  979. {
  980. tor_assert(c->magic == CONTROL_CONNECTION_MAGIC);
  981. return DOWNCAST(control_connection_t, c);
  982. }
  983. typedef enum {
  984. ADDR_POLICY_ACCEPT=1,
  985. ADDR_POLICY_REJECT=2,
  986. } addr_policy_action_t;
  987. /** A linked list of policy rules */
  988. typedef struct addr_policy_t {
  989. int refcnt; /**< Reference count */
  990. addr_policy_action_t policy_type:2;/**< What to do when the policy matches.*/
  991. unsigned int is_private:1; /**< True iff this is the pseudo-address,
  992. * "private". */
  993. unsigned int is_canonical:1; /**< True iff this policy is the canonical
  994. * copy (stored in a hash table to avoid
  995. * duplication of common policies) */
  996. maskbits_t maskbits; /**< Accept/reject all addresses <b>a</b> such that the
  997. * first <b>maskbits</b> bits of <b>a</b> match
  998. * <b>addr</b>. */
  999. /* XXXX_IP6 make this ipv6-capable */
  1000. uint32_t addr; /**< Base address to accept or reject. */
  1001. uint16_t prt_min; /**< Lowest port number to accept/reject. */
  1002. uint16_t prt_max; /**< Highest port number to accept/reject. */
  1003. } addr_policy_t;
  1004. /** A cached_dir_t represents a cacheable directory object, along with its
  1005. * compressed form. */
  1006. typedef struct cached_dir_t {
  1007. char *dir; /**< Contents of this object */
  1008. char *dir_z; /**< Compressed contents of this object. */
  1009. size_t dir_len; /**< Length of <b>dir</b> */
  1010. size_t dir_z_len; /**< Length of <b>dir_z</b> */
  1011. time_t published; /**< When was this object published */
  1012. int refcnt; /**< Reference count for this cached_dir_t. */
  1013. } cached_dir_t;
  1014. /** Enum used to remember where a signed_descriptor_t is stored and how to
  1015. * manage the memory for signed_descriptor_body. */
  1016. typedef enum {
  1017. /** The descriptor isn't stored on disk at all: the copy in memory is
  1018. * canonical; the saved_offset field is meaningless. */
  1019. SAVED_NOWHERE=0,
  1020. /** The descriptor is stored in the cached_routers file: the
  1021. * signed_descriptor_body is meaningless; the signed_descriptor_len and
  1022. * saved_offset are used to index into the mmaped cache file. */
  1023. SAVED_IN_CACHE,
  1024. /** The descriptor is stored in the cached_routers.new file: the
  1025. * signed_descriptor_body and saved_offset fields are both set. */
  1026. /* FFFF (We could also mmap the file and grow the mmap as needed, or
  1027. * lazy-load the descriptor text by using seek and read. We don't, for
  1028. * now.)
  1029. */
  1030. SAVED_IN_JOURNAL
  1031. } saved_location_t;
  1032. /** Enumeration: what kind of downlaod schedule are we using for a given
  1033. * object? */
  1034. typedef enum {
  1035. DL_SCHED_GENERIC = 0,
  1036. DL_SCHED_CONSENSUS = 1,
  1037. } download_schedule_t;
  1038. /** Information about our plans for retrying downloads for a downloadable
  1039. * object. */
  1040. typedef struct download_status_t {
  1041. time_t next_attempt_at; /**< When should we try downloading this descriptor
  1042. * again? */
  1043. uint8_t n_download_failures; /**< Number of failures trying to download the
  1044. * most recent descriptor. */
  1045. download_schedule_t schedule : 8;
  1046. } download_status_t;
  1047. /** The max size we expect router descriptor annotations we create to
  1048. * be. We'll accept larger ones if we see them on disk, but we won't
  1049. * create any that are larger than this. */
  1050. #define ROUTER_ANNOTATION_BUF_LEN 256
  1051. /** Information need to cache an onion router's descriptor. */
  1052. typedef struct signed_descriptor_t {
  1053. /** Pointer to the raw server descriptor, preceded by annotations. Not
  1054. * necessarily NUL-terminated. If saved_location is SAVED_IN_CACHE, this
  1055. * pointer is null. */
  1056. char *signed_descriptor_body;
  1057. /** Length of the annotations preceeding the server descriptor. */
  1058. size_t annotations_len;
  1059. /** Length of the server descriptor. */
  1060. size_t signed_descriptor_len;
  1061. /** Digest of the server descriptor, computed as specified in
  1062. * dir-spec.txt. */
  1063. char signed_descriptor_digest[DIGEST_LEN];
  1064. /** Identity digest of the router. */
  1065. char identity_digest[DIGEST_LEN];
  1066. /** Declared publication time of the descriptor. */
  1067. time_t published_on;
  1068. /** For routerdescs only: digest of the corresponding extrainfo. */
  1069. char extra_info_digest[DIGEST_LEN];
  1070. /** For routerdescs only: Status of downloading the corresponding
  1071. * extrainfo. */
  1072. download_status_t ei_dl_status;
  1073. /** Where is the descriptor saved? */
  1074. saved_location_t saved_location;
  1075. /** If saved_location is SAVED_IN_CACHE or SAVED_IN_JOURNAL, the offset of
  1076. * this descriptor in the corresponding file. */
  1077. off_t saved_offset;
  1078. /** What position is this descriptor within routerlist->routers or
  1079. * routerlist->old_routers? -1 for none. */
  1080. int routerlist_index;
  1081. /** The valid-until time of the most recent consensus that listed this
  1082. * descriptor. 0 for "never listed in a consensus, so far as we know." */
  1083. time_t last_listed_as_valid_until;
  1084. /* If true, we do not ever try to save this object in the cache. */
  1085. unsigned int do_not_cache : 1;
  1086. /* If true, this item is meant to represent an extrainfo. */
  1087. unsigned int is_extrainfo : 1;
  1088. /* If true, we got an extrainfo for this item, and the digest was right,
  1089. * but it was incompatible. */
  1090. unsigned int extrainfo_is_bogus : 1;
  1091. /* If true, we are willing to transmit this item unencrypted. */
  1092. unsigned int send_unencrypted : 1;
  1093. } signed_descriptor_t;
  1094. /** Information about another onion router in the network. */
  1095. typedef struct {
  1096. signed_descriptor_t cache_info;
  1097. char *address; /**< Location of OR: either a hostname or an IP address. */
  1098. char *nickname; /**< Human-readable OR name. */
  1099. uint32_t addr; /**< IPv4 address of OR, in host order. */
  1100. uint16_t or_port; /**< Port for TLS connections. */
  1101. uint16_t dir_port; /**< Port for HTTP directory connections. */
  1102. crypto_pk_env_t *onion_pkey; /**< Public RSA key for onions. */
  1103. crypto_pk_env_t *identity_pkey; /**< Public RSA key for signing. */
  1104. char *platform; /**< What software/operating system is this OR using? */
  1105. /* link info */
  1106. uint32_t bandwidthrate; /**< How many bytes does this OR add to its token
  1107. * bucket per second? */
  1108. uint32_t bandwidthburst; /**< How large is this OR's token bucket? */
  1109. /** How many bytes/s is this router known to handle? */
  1110. uint32_t bandwidthcapacity;
  1111. smartlist_t *exit_policy; /**< What streams will this OR permit
  1112. * to exit? NULL for 'reject *:*'. */
  1113. long uptime; /**< How many seconds the router claims to have been up */
  1114. smartlist_t *declared_family; /**< Nicknames of router which this router
  1115. * claims are its family. */
  1116. char *contact_info; /**< Declared contact info for this router. */
  1117. unsigned int is_hibernating:1; /**< Whether the router claims to be
  1118. * hibernating */
  1119. unsigned int has_old_dnsworkers:1; /**< Whether the router is using
  1120. * dnsworker code. */
  1121. unsigned int caches_extra_info:1; /**< Whether the router caches and serves
  1122. * extrainfo documents. */
  1123. /* local info */
  1124. unsigned int is_running:1; /**< As far as we know, is this OR currently
  1125. * running? */
  1126. unsigned int is_valid:1; /**< Has a trusted dirserver validated this OR?
  1127. * (For Authdir: Have we validated this OR?)
  1128. */
  1129. unsigned int is_named:1; /**< Do we believe the nickname that this OR gives
  1130. * us? */
  1131. unsigned int is_fast:1; /** Do we think this is a fast OR? */
  1132. unsigned int is_stable:1; /** Do we think this is a stable OR? */
  1133. unsigned int is_possible_guard:1; /**< Do we think this is an OK guard? */
  1134. unsigned int is_exit:1; /**< Do we think this is an OK exit? */
  1135. unsigned int is_bad_exit:1; /**< Do we think this exit is censored, borked,
  1136. * or otherwise nasty? */
  1137. unsigned int is_bad_directory:1; /**< Do we think this directory is junky,
  1138. * underpowered, or otherwise useless? */
  1139. unsigned int wants_to_be_hs_dir:1; /**< True iff this router claims to be
  1140. * a hidden service directory. */
  1141. unsigned int is_hs_dir:1; /**< True iff this router is a hidden service
  1142. * directory according to the authorities. */
  1143. /** Tor can use this router for general positions in circuits. */
  1144. #define ROUTER_PURPOSE_GENERAL 0
  1145. /** Tor should avoid using this router for circuit-building. */
  1146. #define ROUTER_PURPOSE_CONTROLLER 1
  1147. /** Tor should use this router only for bridge positions in circuits. */
  1148. #define ROUTER_PURPOSE_BRIDGE 2
  1149. /** Tor should not use this router; it was marked in cached-descriptors with
  1150. * a purpose we didn't recognize. */
  1151. #define ROUTER_PURPOSE_UNKNOWN 255
  1152. uint8_t purpose; /** What positions in a circuit is this router good for? */
  1153. /* The below items are used only by authdirservers for
  1154. * reachability testing. */
  1155. /** When was the last time we could reach this OR? */
  1156. time_t last_reachable;
  1157. /** When did we start testing reachability for this OR? */
  1158. time_t testing_since;
  1159. } routerinfo_t;
  1160. /** Information needed to keep and cache a signed extra-info document. */
  1161. typedef struct extrainfo_t {
  1162. signed_descriptor_t cache_info;
  1163. /** The router's nickname. */
  1164. char nickname[MAX_NICKNAME_LEN+1];
  1165. /** True iff we found the right key for this extra-info, verified the
  1166. * signature, and found it to be bad. */
  1167. unsigned int bad_sig : 1;
  1168. /** If present, we didn't have the right key to verify this extra-info,
  1169. * so this is a copy of the signature in the document. */
  1170. char *pending_sig;
  1171. /** Length of pending_sig. */
  1172. size_t pending_sig_len;
  1173. } extrainfo_t;
  1174. /** Contents of a single router entry in a network status object.
  1175. */
  1176. typedef struct routerstatus_t {
  1177. time_t published_on; /**< When was this router published? */
  1178. char nickname[MAX_NICKNAME_LEN+1]; /**< The nickname this router says it
  1179. * has. */
  1180. char identity_digest[DIGEST_LEN]; /**< Digest of the router's identity
  1181. * key. */
  1182. char descriptor_digest[DIGEST_LEN]; /**< Digest of the router's most recent
  1183. * descriptor. */
  1184. uint32_t addr; /**< IPv4 address for this router. */
  1185. uint16_t or_port; /**< OR port for this router. */
  1186. uint16_t dir_port; /**< Directory port for this router. */
  1187. unsigned int is_authority:1; /**< True iff this router is an authority. */
  1188. unsigned int is_exit:1; /**< True iff this router is a good exit. */
  1189. unsigned int is_stable:1; /**< True iff this router stays up a long time. */
  1190. unsigned int is_fast:1; /**< True iff this router has good bandwidth. */
  1191. unsigned int is_running:1; /**< True iff this router is up. */
  1192. unsigned int is_named:1; /**< True iff "nickname" belongs to this router. */
  1193. unsigned int is_unnamed:1; /**< True iff "nickname" belongs to another
  1194. * router. */
  1195. unsigned int is_valid:1; /**< True iff this router isn't invalid. */
  1196. unsigned int is_v2_dir:1; /**< True iff this router can serve directory
  1197. * information with v2 of the directory
  1198. * protocol. (All directory caches cache v1
  1199. * directories.) */
  1200. unsigned int is_possible_guard:1; /**< True iff this router would be a good
  1201. * choice as an entry guard. */
  1202. unsigned int is_bad_exit:1; /**< True iff this node is a bad choice for
  1203. * an exit node. */
  1204. unsigned int is_bad_directory:1; /**< Do we think this directory is junky,
  1205. * underpowered, or otherwise useless? */
  1206. unsigned int is_hs_dir:1; /** True iff this router is a v2-or-later hidden
  1207. * service directory. */
  1208. /** True iff we know version info for this router. (i.e., a "v" entry was
  1209. * included.) We'll replace all these with a big tor_version_t or a char[]
  1210. * if the number of traits we care about ever becomes incredibly big. */
  1211. unsigned int version_known:1;
  1212. /** True iff this router is a version that supports BEGIN_DIR cells. */
  1213. unsigned int version_supports_begindir:1;
  1214. /** True iff this router is a version that we can post extrainfo docs to. */
  1215. unsigned int version_supports_extrainfo_upload:1;
  1216. /** True iff this router is a version that, if it caches directory info,
  1217. * we can get v3 downloads from. */
  1218. unsigned int version_supports_v3_dir:1;
  1219. /* ---- The fields below aren't derived from the networkstatus; they
  1220. * hold local information only. */
  1221. /** True if we, as a directory mirror, want to download the corresponding
  1222. * routerinfo from the authority who gave us this routerstatus. (That is,
  1223. * if we don't have the routerinfo, and if we haven't already tried to get it
  1224. * from this authority.) Applies in v2 networkstatus document only.
  1225. */
  1226. unsigned int need_to_mirror:1;
  1227. unsigned int name_lookup_warned:1; /**< Have we warned the user for referring
  1228. * to this (unnamed) router by nickname?
  1229. */
  1230. time_t last_dir_503_at; /**< When did this router last tell us that it
  1231. * was too busy to serve directory info? */
  1232. download_status_t dl_status;
  1233. } routerstatus_t;
  1234. /** How many times will we try to download a router's descriptor before giving
  1235. * up? */
  1236. #define MAX_ROUTERDESC_DOWNLOAD_FAILURES 8
  1237. /** Contents of a v2 (non-consensus, non-vote) network status object. */
  1238. typedef struct networkstatus_v2_t {
  1239. /** When did we receive the network-status document? */
  1240. time_t received_on;
  1241. /** What was the digest of the document? */
  1242. char networkstatus_digest[DIGEST_LEN];
  1243. unsigned int is_recent; /**< Is this recent enough to influence running
  1244. * status? */
  1245. /* These fields come from the actual network-status document.*/
  1246. time_t published_on; /**< Declared publication date. */
  1247. char *source_address; /**< Canonical directory server hostname. */
  1248. uint32_t source_addr; /**< Canonical directory server IP. */
  1249. uint16_t source_dirport; /**< Canonical directory server dirport. */
  1250. unsigned int binds_names:1; /**< True iff this directory server binds
  1251. * names. */
  1252. unsigned int recommends_versions:1; /**< True iff this directory server
  1253. * recommends client and server software
  1254. * versions. */
  1255. unsigned int lists_bad_exits:1; /**< True iff this directory server marks
  1256. * malfunctioning exits as bad. */
  1257. /** True iff this directory server marks malfunctioning directories as
  1258. * bad. */
  1259. unsigned int lists_bad_directories:1;
  1260. char identity_digest[DIGEST_LEN]; /**< Digest of signing key. */
  1261. char *contact; /**< How to contact directory admin? (may be NULL). */
  1262. crypto_pk_env_t *signing_key; /**< Key used to sign this directory. */
  1263. char *client_versions; /**< comma-separated list of recommended client
  1264. * versions. */
  1265. char *server_versions; /**< comma-separated list of recommended server
  1266. * versions. */
  1267. smartlist_t *entries; /**< List of routerstatus_t*. This list is kept
  1268. * sorted by identity_digest. */
  1269. } networkstatus_v2_t;
  1270. /** The claim about a single router, make in a vote. */
  1271. typedef struct vote_routerstatus_t {
  1272. routerstatus_t status; /**< Underlying 'status' object for this router.
  1273. * Flags are redundant. */
  1274. uint64_t flags; /**< Bit-field for all recognized flags; index into
  1275. * networkstatus_t.known_flags. */
  1276. char *version; /**< The version that the authority says this router is
  1277. * running. */
  1278. } vote_routerstatus_t;
  1279. /* Information about a single voter in a vote or a consensus. */
  1280. typedef struct networkstatus_voter_info_t {
  1281. char *nickname; /**< Nickname of this voter */
  1282. char identity_digest[DIGEST_LEN]; /**< Digest of this voter's identity key */
  1283. char *address; /**< Address of this voter, in string format. */
  1284. uint32_t addr; /**< Address of this voter, in IPv4, in host order. */
  1285. uint16_t dir_port; /**< Directory port of this voter */
  1286. uint16_t or_port; /**< OR port of this voter */
  1287. char *contact; /**< Contact information for this voter. */
  1288. char vote_digest[DIGEST_LEN]; /**< Digest of this voter's vote, as signed. */
  1289. /* Nothing from here on is signed. */
  1290. char signing_key_digest[DIGEST_LEN]; /**< Declared digest of signing key
  1291. * used by this voter. */
  1292. char *signature; /**< Signature from this voter. */
  1293. int signature_len; /**< Length of <b>signature</b> */
  1294. unsigned int bad_signature : 1; /**< Set to true if we've verified the sig
  1295. * as good. */
  1296. unsigned int good_signature : 1; /**< Set to true if we've tried to verify
  1297. * the sig, and we know it's bad. */
  1298. } networkstatus_voter_info_t;
  1299. /** A common structure to hold a v3 network status vote, or a v3 network
  1300. * status consensus. */
  1301. typedef struct networkstatus_t {
  1302. int is_vote; /**< True if this is a vote; false if it is a consensus. */
  1303. time_t published; /**< Vote only: Tiem when vote was written. */
  1304. time_t valid_after; /**< Time after which this vote or consensus applies. */
  1305. time_t fresh_until; /**< Time before which this is the most recent vote or
  1306. * consensus. */
  1307. time_t valid_until; /**< Time after which this vote or consensus should not
  1308. * be used. */
  1309. /** Consensus only: what method was used to produce this consensus? */
  1310. int consensus_method;
  1311. /** Vote only: what methods is this voter willing to use? */
  1312. smartlist_t *supported_methods;
  1313. /** How long does this vote/consensus claim that authorities take to
  1314. * distribute their votes to one another? */
  1315. int vote_seconds;
  1316. /** How long does this vote/consensus claim that authorites take to
  1317. * distribute their consensus signatures to one another? */
  1318. int dist_seconds;
  1319. /** Comma-separated list of recommended client software, or NULL if this
  1320. * voter has no opinion. */
  1321. char *client_versions;
  1322. char *server_versions;
  1323. /** List of flags that this vote/consensus applies to routers. If a flag is
  1324. * not listed here, the voter has no opinion on what its value should be. */
  1325. smartlist_t *known_flags;
  1326. /** List of networkstatus_voter_info_t. For a vote, only one element
  1327. * is included. For a consensus, one element is included for every voter
  1328. * whose vote contributed to the consensus. */
  1329. smartlist_t *voters;
  1330. struct authority_cert_t *cert; /**< Vote only: the voter's certificate. */
  1331. /** Digest of this document, as signed. */
  1332. char networkstatus_digest[DIGEST_LEN];
  1333. /** List of router statuses, sorted by identity digest. For a vote,
  1334. * the elements are vote_routerstatus_t; for a consensus, the elements
  1335. * are routerstatus_t. */
  1336. smartlist_t *routerstatus_list;
  1337. /** If present, a map from descriptor digest to elements of
  1338. * routerstatus_list. */
  1339. digestmap_t *desc_digest_map;
  1340. } networkstatus_t;
  1341. /** A set of signatures for a networkstatus consensus. All fields are as for
  1342. * networkstatus_t. */
  1343. typedef struct ns_detached_signatures_t {
  1344. time_t valid_after;
  1345. time_t fresh_until;
  1346. time_t valid_until;
  1347. char networkstatus_digest[DIGEST_LEN];
  1348. smartlist_t *signatures; /* list of networkstatus_voter_info_t */
  1349. } ns_detached_signatures_t;
  1350. /** Allowable types of desc_store_t. */
  1351. typedef enum store_type_t {
  1352. ROUTER_STORE = 0,
  1353. EXTRAINFO_STORE = 1
  1354. } store_type_t;
  1355. /** A 'store' is a set of descriptors saved on disk, with accompanying
  1356. * journal, mmaped as needed, rebuilt as needed. */
  1357. typedef struct desc_store_t {
  1358. /** Filename (within DataDir) for the store. We append .tmp to this
  1359. * filename for a temporary file when rebuilding the store, and .new to this
  1360. * filename for the journal. */
  1361. const char *fname_base;
  1362. /** Alternative (obsolete) value for fname_base: if the file named by
  1363. * fname_base isn't present, we read from here instead, but we never write
  1364. * here. */
  1365. const char *fname_alt_base;
  1366. /** Human-readable description of what this store contains. */
  1367. const char *description;
  1368. tor_mmap_t *mmap; /**< A mmap for the main file in the store. */
  1369. store_type_t type; /**< What's stored in this store? */
  1370. /** The size of the router log, in bytes. */
  1371. size_t journal_len;
  1372. /** The size of the router store, in bytes. */
  1373. size_t store_len;
  1374. /** Total bytes dropped since last rebuild: this is space currently
  1375. * used in the cache and the journal that could be freed by a rebuild. */
  1376. size_t bytes_dropped;
  1377. } desc_store_t;
  1378. /** Contents of a directory of onion routers. */
  1379. typedef struct {
  1380. /** Map from server identity digest to a member of routers. */
  1381. struct digest_ri_map_t *identity_map;
  1382. /** Map from server descriptor digest to a signed_descriptor_t from
  1383. * routers or old_routers. */
  1384. struct digest_sd_map_t *desc_digest_map;
  1385. /** Map from extra-info digest to an extrainfo_t. Only exists for
  1386. * routers in routers or old_routers. */
  1387. struct digest_ei_map_t *extra_info_map;
  1388. /** Map from extra-info digests to a signed_descriptor_t for a router
  1389. * descriptor having that extra-info digest. Only exists for
  1390. * routers in routers or old_routers. */
  1391. struct digest_sd_map_t *desc_by_eid_map;
  1392. /** List of routerinfo_t for all currently live routers we know. */
  1393. smartlist_t *routers;
  1394. /** List of signed_descriptor_t for older router descriptors we're
  1395. * caching. */
  1396. smartlist_t *old_routers;
  1397. /** Store holding server descriptors. If present, any router whose
  1398. * cache_info.saved_location == SAVED_IN_CACHE is stored in this file
  1399. * starting at cache_info.saved_offset */
  1400. desc_store_t desc_store;
  1401. /** Store holding extra-info documents. */
  1402. desc_store_t extrainfo_store;
  1403. } routerlist_t;
  1404. /** Information on router used when extending a circuit. We don't need a
  1405. * full routerinfo_t to extend: we only need addr:port:keyid to build an OR
  1406. * connection, and onion_key to create the onionskin. Note that for onehop
  1407. * general-purpose tunnels, the onion_key is NULL. */
  1408. typedef struct extend_info_t {
  1409. char nickname[MAX_HEX_NICKNAME_LEN+1]; /**< This router's nickname for
  1410. * display. */
  1411. char identity_digest[DIGEST_LEN]; /**< Hash of this router's identity key. */
  1412. uint16_t port; /**< OR port. */
  1413. uint32_t addr; /**< IP address in host order. */
  1414. crypto_pk_env_t *onion_key; /**< Current onionskin key. */
  1415. } extend_info_t;
  1416. /** Certificate for v3 directory protocol: binds long-term authority identity
  1417. * keys to medium-term authority signing keys. */
  1418. typedef struct authority_cert_t {
  1419. signed_descriptor_t cache_info;
  1420. crypto_pk_env_t *identity_key;
  1421. crypto_pk_env_t *signing_key;
  1422. char signing_key_digest[DIGEST_LEN];
  1423. time_t expires;
  1424. uint32_t addr;
  1425. uint16_t dir_port;
  1426. } authority_cert_t;
  1427. /** Bitfield enum type listing types of directory authority/directory
  1428. * server. */
  1429. typedef enum {
  1430. NO_AUTHORITY = 0,
  1431. V1_AUTHORITY = 1 << 0,
  1432. V2_AUTHORITY = 1 << 1,
  1433. V3_AUTHORITY = 1 << 2,
  1434. HIDSERV_AUTHORITY = 1 << 3,
  1435. BRIDGE_AUTHORITY = 1 << 4,
  1436. EXTRAINFO_CACHE = 1 << 5, /* not precisely an authority type. */
  1437. } authority_type_t;
  1438. #define CRYPT_PATH_MAGIC 0x70127012u
  1439. /** Holds accounting information for a single step in the layered encryption
  1440. * performed by a circuit. Used only at the client edge of a circuit. */
  1441. typedef struct crypt_path_t {
  1442. uint32_t magic;
  1443. /* crypto environments */
  1444. /** Encryption key and counter for cells heading towards the OR at this
  1445. * step. */
  1446. crypto_cipher_env_t *f_crypto;
  1447. /** Encryption key and counter for cells heading back from the OR at this
  1448. * step. */
  1449. crypto_cipher_env_t *b_crypto;
  1450. /** Digest state for cells heading towards the OR at this step. */
  1451. crypto_digest_env_t *f_digest; /* for integrity checking */
  1452. /** Digest state for cells heading away from the OR at this step. */
  1453. crypto_digest_env_t *b_digest;
  1454. /** Current state of Diffie-Hellman key negotiation with the OR at this
  1455. * step. */
  1456. crypto_dh_env_t *dh_handshake_state;
  1457. /** Current state of 'fast' (non-PK) key negotiation with the OR at this
  1458. * step. Used to save CPU when TLS is already providing all the
  1459. * authentication, secrecy, and integrity we need, and we're already
  1460. * distinguishable from an OR.
  1461. */
  1462. char fast_handshake_state[DIGEST_LEN];
  1463. /** Negotiated key material shared with the OR at this step. */
  1464. char handshake_digest[DIGEST_LEN];/* KH in tor-spec.txt */
  1465. /** Information to extend to the OR at this step. */
  1466. extend_info_t *extend_info;
  1467. /** Is the circuit built to this step? Must be one of:
  1468. * - CPATH_STATE_CLOSED (The circuit has not been extended to this step)
  1469. * - CPATH_STATE_AWAITING_KEYS (We have sent an EXTEND/CREATE to this step
  1470. * and not received an EXTENDED/CREATED)
  1471. * - CPATH_STATE_OPEN (The circuit has been extended to this step) */
  1472. uint8_t state;
  1473. #define CPATH_STATE_CLOSED 0
  1474. #define CPATH_STATE_AWAITING_KEYS 1
  1475. #define CPATH_STATE_OPEN 2
  1476. struct crypt_path_t *next; /**< Link to next crypt_path_t in the circuit.
  1477. * (The list is circular, so the last node
  1478. * links to the first.) */
  1479. struct crypt_path_t *prev; /**< Link to previous crypt_path_t in the
  1480. * circuit. */
  1481. int package_window; /**< How many bytes are we allowed to originate ending
  1482. * at this step? */
  1483. int deliver_window; /**< How many bytes are we willing to deliver originating
  1484. * at this step? */
  1485. } crypt_path_t;
  1486. #define CPATH_KEY_MATERIAL_LEN (20*2+16*2)
  1487. #define DH_KEY_LEN DH_BYTES
  1488. #define ONIONSKIN_CHALLENGE_LEN (PKCS1_OAEP_PADDING_OVERHEAD+\
  1489. CIPHER_KEY_LEN+\
  1490. DH_KEY_LEN)
  1491. #define ONIONSKIN_REPLY_LEN (DH_KEY_LEN+DIGEST_LEN)
  1492. #define REND_COOKIE_LEN DIGEST_LEN
  1493. /** Information used to build a circuit. */
  1494. typedef struct {
  1495. /** Intended length of the final circuit. */
  1496. int desired_path_len;
  1497. /** How to extend to the planned exit node. */
  1498. extend_info_t *chosen_exit;
  1499. /** Whether every node in the circ must have adequate uptime. */
  1500. int need_uptime;
  1501. /** Whether every node in the circ must have adequate capacity. */
  1502. int need_capacity;
  1503. /** Whether the last hop was picked with exiting in mind. */
  1504. int is_internal;
  1505. /** Did we pick this as a one-hop tunnel (not safe for other conns)?
  1506. * These are for encrypted connections that exit to this router, not
  1507. * for arbitrary exits from the circuit. */
  1508. int onehop_tunnel;
  1509. /** The crypt_path_t to append after rendezvous: used for rendezvous. */
  1510. crypt_path_t *pending_final_cpath;
  1511. /** How many times has building a circuit for this task failed? */
  1512. int failure_count;
  1513. /** At what time should we give up on this task? */
  1514. time_t expiry_time;
  1515. } cpath_build_state_t;
  1516. #define ORIGIN_CIRCUIT_MAGIC 0x35315243u
  1517. #define OR_CIRCUIT_MAGIC 0x98ABC04Fu
  1518. typedef uint16_t circid_t;
  1519. /**
  1520. * A circuit is a path over the onion routing
  1521. * network. Applications can connect to one end of the circuit, and can
  1522. * create exit connections at the other end of the circuit. AP and exit
  1523. * connections have only one circuit associated with them (and thus these
  1524. * connection types are closed when the circuit is closed), whereas
  1525. * OR connections multiplex many circuits at once, and stay standing even
  1526. * when there are no circuits running over them.
  1527. *
  1528. * A circuit_t structure can fill one of two roles. First, a or_circuit_t
  1529. * links two connections together: either an edge connection and an OR
  1530. * connection, or two OR connections. (When joined to an OR connection, a
  1531. * circuit_t affects only cells sent to a particular circID on that
  1532. * connection. When joined to an edge connection, a circuit_t affects all
  1533. * data.)
  1534. * Second, an origin_circuit_t holds the cipher keys and state for sending data
  1535. * along a given circuit. At the OP, it has a sequence of ciphers, each
  1536. * of which is shared with a single OR along the circuit. Separate
  1537. * ciphers are used for data going "forward" (away from the OP) and
  1538. * "backward" (towards the OP). At the OR, a circuit has only two stream
  1539. * ciphers: one for data going forward, and one for data going backward.
  1540. */
  1541. typedef struct circuit_t {
  1542. uint32_t magic; /**< For memory and type debugging: must equal
  1543. * ORIGIN_CIRCUIT_MAGIC or OR_CIRCUIT_MAGIC. */
  1544. /** Queue of cells waiting to be transmitted on n_conn. */
  1545. cell_queue_t n_conn_cells;
  1546. /** The OR connection that is next in this circuit. */
  1547. or_connection_t *n_conn;
  1548. /** The identity hash of n_conn. */
  1549. char n_conn_id_digest[DIGEST_LEN];
  1550. /** The circuit_id used in the next (forward) hop of this circuit. */
  1551. uint16_t n_circ_id;
  1552. /** The port for the OR that is next in this circuit. */
  1553. uint16_t n_port;
  1554. /** The IPv4 address of the OR that is next in this circuit. */
  1555. uint32_t n_addr;
  1556. /** True iff we are waiting for n_conn_cells to become less full before
  1557. * allowing p_streams to add any more cells. (Origin circuit only.) */
  1558. unsigned int streams_blocked_on_n_conn : 1;
  1559. /** True iff we are waiting for p_conn_cells to become less full before
  1560. * allowing n_streams to add any more cells. (OR circuit only.) */
  1561. unsigned int streams_blocked_on_p_conn : 1;
  1562. uint8_t state; /**< Current status of this circuit. */
  1563. uint8_t purpose; /**< Why are we creating this circuit? */
  1564. /** How many relay data cells can we package (read from edge streams)
  1565. * on this circuit before we receive a circuit-level sendme cell asking
  1566. * for more? */
  1567. int package_window;
  1568. /** How many relay data cells will we deliver (write to edge streams)
  1569. * on this circuit? When deliver_window gets low, we send some
  1570. * circuit-level sendme cells to indicate that we're willing to accept
  1571. * more. */
  1572. int deliver_window;
  1573. /** For storage while n_conn is pending
  1574. * (state CIRCUIT_STATE_OR_WAIT). When defined, it is always
  1575. * length ONIONSKIN_CHALLENGE_LEN. */
  1576. char *n_conn_onionskin;
  1577. time_t timestamp_created; /**< When was this circuit created? */
  1578. time_t timestamp_dirty; /**< When the circuit was first used, or 0 if the
  1579. * circuit is clean. */
  1580. uint16_t marked_for_close; /**< Should we close this circuit at the end of
  1581. * the main loop? (If true, holds the line number
  1582. * where this circuit was marked.) */
  1583. const char *marked_for_close_file; /**< For debugging: in which file was this
  1584. * circuit marked for close? */
  1585. /** Next circuit in the doubly-linked ring of circuits waiting to add
  1586. * cells to n_conn. NULL if we have no cells pending, or if we're not
  1587. * linked to an OR connection. */
  1588. struct circuit_t *next_active_on_n_conn;
  1589. /** Previous circuit in the doubly-linked ring of circuits waiting to add
  1590. * cells to n_conn. NULL if we have no cells pending, or if we're not
  1591. * linked to an OR connection. */
  1592. struct circuit_t *prev_active_on_n_conn;
  1593. struct circuit_t *next; /**< Next circuit in linked list of all circuits. */
  1594. } circuit_t;
  1595. /** An origin_circuit_t holds data necessary to build and use a circuit.
  1596. */
  1597. typedef struct origin_circuit_t {
  1598. circuit_t _base;
  1599. /** Linked list of AP streams (or EXIT streams if hidden service)
  1600. * associated with this circuit. */
  1601. edge_connection_t *p_streams;
  1602. /** Build state for this circuit. It includes the intended path
  1603. * length, the chosen exit router, rendezvous information, etc.
  1604. */
  1605. cpath_build_state_t *build_state;
  1606. /** The doubly-linked list of crypt_path_t entries, one per hop,
  1607. * for this circuit. This includes ciphers for each hop,
  1608. * integrity-checking digests for each hop, and package/delivery
  1609. * windows for each hop.
  1610. */
  1611. crypt_path_t *cpath;
  1612. /** The rend_pk_digest field holds a hash of location-hidden service's
  1613. * PK if purpose is S_ESTABLISH_INTRO or S_RENDEZVOUSING.
  1614. */
  1615. char rend_pk_digest[DIGEST_LEN];
  1616. /** Holds rendezvous cookie if purpose is C_ESTABLISH_REND. Filled with
  1617. * zeroes otherwise.
  1618. */
  1619. char rend_cookie[REND_COOKIE_LEN];
  1620. /**
  1621. * The rend_query field holds the y portion of y.onion (nul-terminated)
  1622. * if purpose is C_INTRODUCING or C_ESTABLISH_REND, or is a C_GENERAL
  1623. * for a hidden service, or is S_*.
  1624. */
  1625. char rend_query[REND_SERVICE_ID_LEN_BASE32+1];
  1626. /** Stores the rendezvous descriptor version if purpose is S_*. Used to
  1627. * distinguish introduction and rendezvous points belonging to the same
  1628. * rendezvous service ID, but different descriptor versions.
  1629. */
  1630. uint8_t rend_desc_version;
  1631. /* The intro key replaces the hidden service's public key if purpose is
  1632. * S_ESTABLISH_INTRO or S_INTRO, provided that no unversioned rendezvous
  1633. * descriptor is used. */
  1634. crypto_pk_env_t *intro_key;
  1635. /** The next stream_id that will be tried when we're attempting to
  1636. * construct a new AP stream originating at this circuit. */
  1637. uint16_t next_stream_id;
  1638. /** Quasi-global identifier for this circuit; used for control.c */
  1639. /* XXXX NM This can get re-used after 2**32 circuits. */
  1640. uint32_t global_identifier;
  1641. } origin_circuit_t;
  1642. /** An or_circuit_t holds information needed to implement a circuit at an
  1643. * OR. */
  1644. typedef struct or_circuit_t {
  1645. circuit_t _base;
  1646. /** Next circuit in the doubly-linked ring of circuits waiting to add
  1647. * cells to p_conn. NULL if we have no cells pending, or if we're not
  1648. * linked to an OR connection. */
  1649. struct circuit_t *next_active_on_p_conn;
  1650. /** Previous circuit in the doubly-linked ring of circuits waiting to add
  1651. * cells to p_conn. NULL if we have no cells pending, or if we're not
  1652. * linked to an OR connection. */
  1653. struct circuit_t *prev_active_on_p_conn;
  1654. /** The circuit_id used in the previous (backward) hop of this circuit. */
  1655. circid_t p_circ_id;
  1656. /** Queue of cells waiting to be transmitted on p_conn. */
  1657. cell_queue_t p_conn_cells;
  1658. /** The OR connection that is previous in this circuit. */
  1659. or_connection_t *p_conn;
  1660. /** Linked list of Exit streams associated with this circuit. */
  1661. edge_connection_t *n_streams;
  1662. /** Linked list of Exit streams associated with this circuit that are
  1663. * still being resolved. */
  1664. edge_connection_t *resolving_streams;
  1665. /** The cipher used by intermediate hops for cells heading toward the
  1666. * OP. */
  1667. crypto_cipher_env_t *p_crypto;
  1668. /** The cipher used by intermediate hops for cells heading away from
  1669. * the OP. */
  1670. crypto_cipher_env_t *n_crypto;
  1671. /** The integrity-checking digest used by intermediate hops, for
  1672. * cells packaged here and heading towards the OP.
  1673. */
  1674. crypto_digest_env_t *p_digest;
  1675. /** The integrity-checking digest used by intermediate hops, for
  1676. * cells packaged at the OP and arriving here.
  1677. */
  1678. crypto_digest_env_t *n_digest;
  1679. /** Points to spliced circuit if purpose is REND_ESTABLISHED, and circuit
  1680. * is not marked for close. */
  1681. struct or_circuit_t *rend_splice;
  1682. #if REND_COOKIE_LEN >= DIGEST_LEN
  1683. #define REND_TOKEN_LEN REND_COOKIE_LEN
  1684. #else
  1685. #define REND_TOKEN_LEN DIGEST_LEN
  1686. #endif
  1687. /** A hash of location-hidden service's PK if purpose is INTRO_POINT, or a
  1688. * rendezvous cookie if purpose is REND_POINT_WAITING. Filled with zeroes
  1689. * otherwise.
  1690. * ???? move to a subtype or adjunct structure? Wastes 20 bytes. -NM
  1691. */
  1692. char rend_token[REND_TOKEN_LEN];
  1693. /* ???? move to a subtype or adjunct structure? Wastes 20 bytes -NM */
  1694. char handshake_digest[DIGEST_LEN]; /**< Stores KH for the handshake. */
  1695. /** True iff this circuit was made with a CREATE_FAST cell. */
  1696. unsigned int is_first_hop : 1;
  1697. } or_circuit_t;
  1698. /** Convert a circuit subtype to a circuit_t.*/
  1699. #define TO_CIRCUIT(x) (&((x)->_base))
  1700. /** Convert a circuit_t* to a pointer to the enclosing or_circuit_t. Asserts
  1701. * if the cast is impossible. */
  1702. static or_circuit_t *TO_OR_CIRCUIT(circuit_t *);
  1703. /** Convert a circuit_t* to a pointer to the enclosing origin_circuit_t.
  1704. * Asserts if the cast is impossible. */
  1705. static origin_circuit_t *TO_ORIGIN_CIRCUIT(circuit_t *);
  1706. static INLINE or_circuit_t *TO_OR_CIRCUIT(circuit_t *x)
  1707. {
  1708. tor_assert(x->magic == OR_CIRCUIT_MAGIC);
  1709. return DOWNCAST(or_circuit_t, x);
  1710. }
  1711. static INLINE origin_circuit_t *TO_ORIGIN_CIRCUIT(circuit_t *x)
  1712. {
  1713. tor_assert(x->magic == ORIGIN_CIRCUIT_MAGIC);
  1714. return DOWNCAST(origin_circuit_t, x);
  1715. }
  1716. #define ALLOW_INVALID_ENTRY 1
  1717. #define ALLOW_INVALID_EXIT 2
  1718. #define ALLOW_INVALID_MIDDLE 4
  1719. #define ALLOW_INVALID_RENDEZVOUS 8
  1720. #define ALLOW_INVALID_INTRODUCTION 16
  1721. /** An entry specifying a set of addresses and ports that should be remapped
  1722. * to another address and port before exiting this exit node. */
  1723. typedef struct exit_redirect_t {
  1724. /* XXXX_IP6 make this whole mess ipv6-capable. (Does anybody use it? */
  1725. uint32_t addr;
  1726. uint16_t port_min;
  1727. uint16_t port_max;
  1728. maskbits_t maskbits;
  1729. uint32_t addr_dest;
  1730. uint16_t port_dest;
  1731. unsigned is_redirect:1;
  1732. } exit_redirect_t;
  1733. /* limits for TCP send and recv buffer size used for constrained sockets */
  1734. #define MIN_CONSTRAINED_TCP_BUFFER 2048
  1735. #define MAX_CONSTRAINED_TCP_BUFFER 262144 /* 256k */
  1736. /** A linked list of lines in a config file. */
  1737. typedef struct config_line_t {
  1738. char *key;
  1739. char *value;
  1740. struct config_line_t *next;
  1741. } config_line_t;
  1742. /** Configuration options for a Tor process. */
  1743. typedef struct {
  1744. uint32_t _magic;
  1745. /** What should the tor process actually do? */
  1746. enum {
  1747. CMD_RUN_TOR=0, CMD_LIST_FINGERPRINT, CMD_HASH_PASSWORD,
  1748. CMD_VERIFY_CONFIG, CMD_RUN_UNITTESTS
  1749. } command;
  1750. const char *command_arg; /**< Argument for command-line option. */
  1751. config_line_t *Logs; /**< New-style list of configuration lines
  1752. * for logs */
  1753. char *DebugLogFile; /**< Where to send verbose log messages. */
  1754. char *DataDirectory; /**< OR only: where to store long-term data. */
  1755. char *Nickname; /**< OR only: nickname of this onion router. */
  1756. char *Address; /**< OR only: configured address for this onion router. */
  1757. char *PidFile; /**< Where to store PID of Tor process. */
  1758. char *ExitNodes; /**< Comma-separated list of nicknames of ORs to consider
  1759. * as exits. */
  1760. char *EntryNodes; /**< Comma-separated list of nicknames of ORs to consider
  1761. * as entry points. */
  1762. int StrictExitNodes; /**< Boolean: When none of our ExitNodes are up, do we
  1763. * stop building circuits? */
  1764. int StrictEntryNodes; /**< Boolean: When none of our EntryNodes are up, do we
  1765. * stop building circuits? */
  1766. char *ExcludeNodes; /**< Comma-separated list of nicknames of ORs not to
  1767. * use in circuits. */
  1768. char *RendNodes; /**< Comma-separated list of nicknames used as introduction
  1769. * points. */
  1770. char *RendExcludeNodes; /**< Comma-separated list of nicknames not to use
  1771. * as introduction points. */
  1772. /** List of "entry", "middle", "exit", "introduction", "rendezvous". */
  1773. smartlist_t *AllowInvalidNodes;
  1774. int _AllowInvalid; /**< Bitmask; derived from AllowInvalidNodes. */
  1775. config_line_t *ExitPolicy; /**< Lists of exit policy components. */
  1776. int ExitPolicyRejectPrivate; /**< Should we not exit to local addresses? */
  1777. config_line_t *SocksPolicy; /**< Lists of socks policy components */
  1778. config_line_t *DirPolicy; /**< Lists of dir policy components */
  1779. /** Addresses to bind for listening for SOCKS connections. */
  1780. config_line_t *SocksListenAddress;
  1781. /** Addresses to bind for listening for transparent pf/nefilter
  1782. * connections. */
  1783. config_line_t *TransListenAddress;
  1784. /** Addresses to bind for listening for transparent natd connections */
  1785. config_line_t *NatdListenAddress;
  1786. /** Addresses to bind for listening for SOCKS connections. */
  1787. config_line_t *DNSListenAddress;
  1788. /** Addresses to bind for listening for OR connections. */
  1789. config_line_t *ORListenAddress;
  1790. /** Addresses to bind for listening for directory connections. */
  1791. config_line_t *DirListenAddress;
  1792. /** Addresses to bind for listening for control connections. */
  1793. config_line_t *ControlListenAddress;
  1794. /** Local address to bind outbound sockets */
  1795. char *OutboundBindAddress;
  1796. /** Directory server only: which versions of
  1797. * Tor should we tell users to run? */
  1798. config_line_t *RecommendedVersions;
  1799. config_line_t *RecommendedClientVersions;
  1800. config_line_t *RecommendedServerVersions;
  1801. /** Whether dirservers refuse router descriptors with private IPs. */
  1802. int DirAllowPrivateAddresses;
  1803. char *User; /**< Name of user to run Tor as. */
  1804. char *Group; /**< Name of group to run Tor as. */
  1805. int ORPort; /**< Port to listen on for OR connections. */
  1806. int SocksPort; /**< Port to listen on for SOCKS connections. */
  1807. /** Port to listen on for transparent pf/netfilter connections. */
  1808. int TransPort;
  1809. int NatdPort; /**< Port to listen on for transparent natd connections. */
  1810. int ControlPort; /**< Port to listen on for control connections. */
  1811. config_line_t *ControlSocket; /**< List of Unix Domain Sockets to listen on
  1812. * for control connections. */
  1813. int DirPort; /**< Port to listen on for directory connections. */
  1814. int DNSPort; /**< Port to listen on for DNS requests. */
  1815. int AssumeReachable; /**< Whether to publish our descriptor regardless. */
  1816. int AuthoritativeDir; /**< Boolean: is this an authoritative directory? */
  1817. int V1AuthoritativeDir; /**< Boolean: is this an authoritative directory
  1818. * for version 1 directories? */
  1819. int V2AuthoritativeDir; /**< Boolean: is this an authoritative directory
  1820. * for version 2 directories? */
  1821. int V3AuthoritativeDir; /**< Boolean: is this an authoritative directory
  1822. * for version 3 directories? */
  1823. int HSAuthoritativeDir; /**< Boolean: does this an authoritative directory
  1824. * handle hidden service requests? */
  1825. int HSAuthorityRecordStats; /**< Boolean: does this HS authoritative
  1826. * directory record statistics? */
  1827. int NamingAuthoritativeDir; /**< Boolean: is this an authoritative directory
  1828. * that's willing to bind names? */
  1829. int VersioningAuthoritativeDir; /**< Boolean: is this an authoritative
  1830. * directory that's willing to recommend
  1831. * versions? */
  1832. int BridgeAuthoritativeDir; /**< Boolean: is this an authoritative directory
  1833. * that aggregates bridge descriptors? */
  1834. /** If set on a bridge authority, it will answer requests on its dirport
  1835. * for bridge statuses -- but only if the requests use this password.
  1836. * If set on a bridge user, request bridge statuses, and use this password
  1837. * when doing so. */
  1838. char *BridgePassword;
  1839. int UseBridges; /**< Boolean: should we start all circuits with a bridge? */
  1840. config_line_t *Bridges; /**< List of bootstrap bridge addresses. */
  1841. int BridgeRelay; /**< Boolean: are we acting as a bridge relay? We make
  1842. * this explicit so we can change how we behave in the
  1843. * future. */
  1844. /** Boolean: if we know the bridge's digest, should we get new
  1845. * descriptors from the bridge authorities or from the bridge itself? */
  1846. int UpdateBridgesFromAuthority;
  1847. int AvoidDiskWrites; /**< Boolean: should we never cache things to disk?
  1848. * Not used yet. */
  1849. int ClientOnly; /**< Boolean: should we never evolve into a server role? */
  1850. /** Boolean: should we never publish a descriptor? Deprecated. */
  1851. int NoPublish;
  1852. /** To what authority types do we publish our descriptor? Choices are
  1853. * "v1", "v2", "v3", "bridge", or "". */
  1854. smartlist_t *PublishServerDescriptor;
  1855. /** An authority type, derived from PublishServerDescriptor. */
  1856. authority_type_t _PublishServerDescriptor;
  1857. /** Boolean: do we publish hidden service descriptors to the HS auths? */
  1858. int PublishHidServDescriptors;
  1859. int FetchServerDescriptors; /**< Do we fetch server descriptors as normal? */
  1860. int FetchHidServDescriptors; /** and hidden service descriptors? */
  1861. int HidServDirectoryV2; /**< Do we participate in the HS DHT? */
  1862. int MinUptimeHidServDirectoryV2; /**< As directory authority, accept hidden
  1863. * service directories after what time? */
  1864. int FetchUselessDescriptors; /**< Do we fetch non-running descriptors too? */
  1865. int AllDirActionsPrivate; /**< Should every directory action be sent
  1866. * through a Tor circuit? */
  1867. int ConnLimit; /**< Demanded minimum number of simultaneous connections. */
  1868. int _ConnLimit; /**< Maximum allowed number of simultaneous connections. */
  1869. int RunAsDaemon; /**< If true, run in the background. (Unix only) */
  1870. int FascistFirewall; /**< Whether to prefer ORs reachable on open ports. */
  1871. smartlist_t *FirewallPorts; /**< Which ports our firewall allows
  1872. * (strings). */
  1873. config_line_t *ReachableAddresses; /**< IP:ports our firewall allows. */
  1874. config_line_t *ReachableORAddresses; /**< IP:ports for OR conns. */
  1875. config_line_t *ReachableDirAddresses; /**< IP:ports for Dir conns. */
  1876. int ConstrainedSockets; /**< Shrink xmit and recv socket buffers. */
  1877. uint64_t ConstrainedSockSize; /**< Size of constrained buffers. */
  1878. /** Application ports that require all nodes in circ to have sufficient
  1879. * uptime. */
  1880. smartlist_t *LongLivedPorts;
  1881. /** Application ports that are likely to be unencrypted and
  1882. * unauthenticated; we reject requests for them to prevent the
  1883. * user from screwing up and leaking plaintext secrets to an
  1884. * observer somewhere on the Internet. */
  1885. smartlist_t *RejectPlaintextPorts;
  1886. /** Related to RejectPlaintextPorts above, except this config option
  1887. * controls whether we warn (in the log and via a controller status
  1888. * event) every time a risky connection is attempted. */
  1889. smartlist_t *WarnPlaintextPorts;
  1890. /** Should we try to reuse the same exit node for a given host */
  1891. smartlist_t *TrackHostExits;
  1892. int TrackHostExitsExpire; /**< Number of seconds until we expire an
  1893. * addressmap */
  1894. config_line_t *AddressMap; /**< List of address map directives. */
  1895. int AutomapHostsOnResolve; /**< If true, when we get a resolve request for a
  1896. * hostname ending with one of the suffixes in
  1897. * <b>AutomapHostsSuffixes</b>, map it to a
  1898. * virtual address. */
  1899. smartlist_t *AutomapHostsSuffixes; /**< List of suffixes for
  1900. * <b>AutomapHostsOnResolve</b>. */
  1901. int RendPostPeriod; /**< How often do we post each rendezvous service
  1902. * descriptor? Remember to publish them independently. */
  1903. int KeepalivePeriod; /**< How often do we send padding cells to keep
  1904. * connections alive? */
  1905. int SocksTimeout; /**< How long do we let a socks connection wait
  1906. * unattached before we fail it? */
  1907. int CircuitBuildTimeout; /**< Cull non-open circuits that were born
  1908. * at least this many seconds ago. */
  1909. int CircuitIdleTimeout; /**< Cull open clean circuits that were born
  1910. * at least this many seconds ago. */
  1911. int MaxOnionsPending; /**< How many circuit CREATE requests do we allow
  1912. * to wait simultaneously before we start dropping
  1913. * them? */
  1914. int NewCircuitPeriod; /**< How long do we use a circuit before building
  1915. * a new one? */
  1916. int MaxCircuitDirtiness; /**< Never use circs that were first used more than
  1917. this interval ago. */
  1918. uint64_t BandwidthRate; /**< How much bandwidth, on average, are we willing
  1919. * to use in a second? */
  1920. uint64_t BandwidthBurst; /**< How much bandwidth, at maximum, are we willing
  1921. * to use in a second? */
  1922. uint64_t MaxAdvertisedBandwidth; /**< How much bandwidth are we willing to
  1923. * tell people we have? */
  1924. uint64_t RelayBandwidthRate; /**< How much bandwidth, on average, are we
  1925. * willing to use for all relayed conns? */
  1926. uint64_t RelayBandwidthBurst; /**< How much bandwidth, at maximum, will we
  1927. * use in a second for all relayed conns? */
  1928. int NumCpus; /**< How many CPUs should we try to use? */
  1929. int RunTesting; /**< If true, create testing circuits to measure how well the
  1930. * other ORs are running. */
  1931. char *TestVia; /**< When reachability testing, use these as middle hop. */
  1932. config_line_t *RendConfigLines; /**< List of configuration lines
  1933. * for rendezvous services. */
  1934. char *ContactInfo; /**< Contact info to be published in the directory. */
  1935. char *HttpProxy; /**< hostname[:port] to use as http proxy, if any. */
  1936. uint32_t HttpProxyAddr; /**< Parsed IPv4 addr for http proxy, if any. */
  1937. uint16_t HttpProxyPort; /**< Parsed port for http proxy, if any. */
  1938. char *HttpProxyAuthenticator; /**< username:password string, if any. */
  1939. char *HttpsProxy; /**< hostname[:port] to use as https proxy, if any. */
  1940. uint32_t HttpsProxyAddr; /**< Parsed IPv4 addr for https proxy, if any. */
  1941. uint16_t HttpsProxyPort; /**< Parsed port for https proxy, if any. */
  1942. char *HttpsProxyAuthenticator; /**< username:password string, if any. */
  1943. /** List of configuration lines for replacement directory authorities.
  1944. * If you just want to replace one class of authority at a time,
  1945. * use the "Alternate*Authority" options below instead. */
  1946. config_line_t *DirServers;
  1947. /** If set, use these main (currently v3) directory authorities and
  1948. * not the default ones. */
  1949. config_line_t *AlternateDirAuthority;
  1950. /** If set, use these bridge authorities and not the default one. */
  1951. config_line_t *AlternateBridgeAuthority;
  1952. /** If set, use these HS authorities and not the default ones. */
  1953. config_line_t *AlternateHSAuthority;
  1954. char *MyFamily; /**< Declared family for this OR. */
  1955. config_line_t *NodeFamilies; /**< List of config lines for
  1956. * node families */
  1957. config_line_t *RedirectExit; /**< List of config lines for simple
  1958. * addr/port redirection */
  1959. smartlist_t *RedirectExitList; /**< List of exit_redirect_t */
  1960. config_line_t *AuthDirBadDir; /**< Address policy for descriptors to
  1961. * mark as bad dir mirrors. */
  1962. config_line_t *AuthDirBadExit; /**< Address policy for descriptors to
  1963. * mark as bad exits. */
  1964. config_line_t *AuthDirReject; /**< Address policy for descriptors to
  1965. * reject. */
  1966. config_line_t *AuthDirInvalid; /**< Address policy for descriptors to
  1967. * never mark as valid. */
  1968. int AuthDirListBadDirs; /**< True iff we should list bad dirs,
  1969. * and vote for all other dir mirrors as good. */
  1970. int AuthDirListBadExits; /**< True iff we should list bad exits,
  1971. * and vote for all other exits as good. */
  1972. int AuthDirRejectUnlisted; /**< Boolean: do we reject all routers that
  1973. * aren't named in our fingerprint file? */
  1974. int AuthDirMaxServersPerAddr; /**< Do not permit more than this
  1975. * number of servers per IP address. */
  1976. int AuthDirMaxServersPerAuthAddr; /**< Do not permit more than this
  1977. * number of servers per IP address shared
  1978. * with an authority. */
  1979. char *AccountingStart; /**< How long is the accounting interval, and when
  1980. * does it start? */
  1981. uint64_t AccountingMax; /**< How many bytes do we allow per accounting
  1982. * interval before hibernation? 0 for "never
  1983. * hibernate." */
  1984. /** Base64-encoded hash of accepted passwords for the control system. */
  1985. config_line_t *HashedControlPassword;
  1986. int CookieAuthentication; /**< Boolean: do we enable cookie-based auth for
  1987. * the control system? */
  1988. char *CookieAuthFile; /**< Location of a cookie authentication file. */
  1989. int CookieAuthFileGroupReadable; /**< Boolean: Is the CookieAuthFile g+r? */
  1990. int LeaveStreamsUnattached; /**< Boolean: Does Tor attach new streams to
  1991. * circuits itself (0), or does it expect a controller
  1992. * to cope? (1) */
  1993. int DisablePredictedCircuits; /**< Boolean: does Tor preemptively
  1994. * make circuits in the background (0),
  1995. * or not (1)? */
  1996. int ShutdownWaitLength; /**< When we get a SIGINT and we're a server, how
  1997. * long do we wait before exiting? */
  1998. int SafeLogging; /**< Boolean: are we allowed to log sensitive strings
  1999. * such as addresses (0), or do we scrub them first (1)? */
  2000. int SafeSocks; /**< Boolean: should we outright refuse application
  2001. * connections that use socks4 or socks5-with-local-dns? */
  2002. #define LOG_PROTOCOL_WARN (get_options()->ProtocolWarnings ? \
  2003. LOG_WARN : LOG_INFO)
  2004. int ProtocolWarnings; /**< Boolean: when other parties screw up the Tor
  2005. * protocol, is it a warn or an info in our logs? */
  2006. int TestSocks; /**< Boolean: when we get a socks connection, do we loudly
  2007. * log whether it was DNS-leaking or not? */
  2008. int HardwareAccel; /**< Boolean: Should we enable OpenSSL hardware
  2009. * acceleration where available? */
  2010. int UseEntryGuards; /**< Boolean: Do we try to enter from a smallish number
  2011. * of fixed nodes? */
  2012. int NumEntryGuards; /**< How many entry guards do we try to establish? */
  2013. int RephistTrackTime; /**< How many seconds do we keep rephist info? */
  2014. int FastFirstHopPK; /**< If Tor believes it is safe, should we save a third
  2015. * of our PK time by sending CREATE_FAST cells? */
  2016. /** Should we always fetch our dir info on the mirror schedule (which
  2017. * means directly from the authorities) no matter our other config? */
  2018. int FetchDirInfoEarly;
  2019. smartlist_t *reachable_addr_policy; /**< Parsed from ReachableAddresses */
  2020. char *VirtualAddrNetwork; /**< Address and mask to hand out for virtual
  2021. * MAPADDRESS requests. */
  2022. int ServerDNSSearchDomains; /**< Boolean: If set, we don't force exit
  2023. * addresses to be FQDNs, but rather search for them in
  2024. * the local domains. */
  2025. int ServerDNSDetectHijacking; /**< Boolean: If true, check for DNS failure
  2026. * hijacking. */
  2027. char *ServerDNSResolvConfFile; /**< If provided, we configure our internal
  2028. * resolver from the file here rather than from
  2029. * /etc/resolv.conf (Unix) or the registry (Windows). */
  2030. /** Boolean: if set, we start even if our resolv.conf file is missing
  2031. * or broken. */
  2032. int ServerDNSAllowBrokenResolvConf;
  2033. smartlist_t *ServerDNSTestAddresses; /**< A list of addresses that definitely
  2034. * should be resolveable. Used for
  2035. * testing our DNS server. */
  2036. int EnforceDistinctSubnets; /**< If true, don't allow multiple routers in the
  2037. * same network zone in the same circuit. */
  2038. int TunnelDirConns; /**< If true, use BEGIN_DIR rather than BEGIN when
  2039. * possible. */
  2040. int PreferTunneledDirConns; /**< If true, avoid dirservers that don't
  2041. * support BEGIN_DIR, when possible. */
  2042. int AllowNonRFC953Hostnames; /**< If true, we allow connections to hostnames
  2043. * with weird characters. */
  2044. /** If true, we try resolving hostnames with weird characters. */
  2045. int ServerDNSAllowNonRFC953Hostnames;
  2046. /** If true, we try to download extra-info documents (and we serve them,
  2047. * if we are a cache). For authorities, this is always true. */
  2048. int DownloadExtraInfo;
  2049. /** If true, do not believe anybody who tells us that a domain resolves
  2050. * to an internal address, or that an internal address has a PTR mapping.
  2051. * Helps avoid some cross-site attacks. */
  2052. int ClientDNSRejectInternalAddresses;
  2053. /** The length of time that we think a consensus should be fresh. */
  2054. int V3AuthVotingInterval;
  2055. /** The length of time we think it will take to distribute votes. */
  2056. int V3AuthVoteDelay;
  2057. /** The length of time we think it will take to distribute signatures. */
  2058. int V3AuthDistDelay;
  2059. /** The number of intervals we think a consensus should be valid. */
  2060. int V3AuthNIntervalsValid;
  2061. /** File to check for a consensus networkstatus, if we don't have one
  2062. * cached. */
  2063. char *FallbackNetworkstatusFile;
  2064. /** DOCDOC here and in tor.1 */
  2065. int BridgeRecordUsageByCountry;
  2066. char *GeoIPFile;
  2067. } or_options_t;
  2068. /** Persistent state for an onion router, as saved to disk. */
  2069. typedef struct {
  2070. uint32_t _magic;
  2071. /** The time at which we next plan to write the state to the disk. Equal to
  2072. * TIME_MAX if there are no saveable changes, 0 if there are changes that
  2073. * should be saved right away. */
  2074. time_t next_write;
  2075. /** When was the state last written to disk? */
  2076. time_t LastWritten;
  2077. /** Fields for accounting bandwidth use. */
  2078. time_t AccountingIntervalStart;
  2079. uint64_t AccountingBytesReadInInterval;
  2080. uint64_t AccountingBytesWrittenInInterval;
  2081. int AccountingSecondsActive;
  2082. uint64_t AccountingExpectedUsage;
  2083. /** A list of Entry Guard-related configuration lines. */
  2084. config_line_t *EntryGuards;
  2085. /** These fields hold information on the history of bandwidth usage for
  2086. * servers. The "Ends" fields hold the time when we last updated the
  2087. * bandwidth usage. The "Interval" fields hold the granularity, in seconds,
  2088. * of the entries of Values. The "Values" lists hold decimal string
  2089. * representations of the number of bytes read or written in each
  2090. * interval. */
  2091. time_t BWHistoryReadEnds;
  2092. int BWHistoryReadInterval;
  2093. smartlist_t *BWHistoryReadValues;
  2094. time_t BWHistoryWriteEnds;
  2095. int BWHistoryWriteInterval;
  2096. smartlist_t *BWHistoryWriteValues;
  2097. /** What version of Tor wrote this state file? */
  2098. char *TorVersion;
  2099. /** Holds any unrecognized values we found in the state file, in the order
  2100. * in which we found them. */
  2101. config_line_t *ExtraLines;
  2102. /** When did we last rotate our onion key? "0" for 'no idea'. */
  2103. time_t LastRotatedOnionKey;
  2104. } or_state_t;
  2105. /** Change the next_write time of <b>state</b> to <b>when</b>, unless the
  2106. * state is already scheduled to be written to disk earlier than <b>when</b>.
  2107. */
  2108. static INLINE void or_state_mark_dirty(or_state_t *state, time_t when)
  2109. {
  2110. if (state->next_write > when)
  2111. state->next_write = when;
  2112. }
  2113. #define MAX_SOCKS_REPLY_LEN 1024
  2114. #define MAX_SOCKS_ADDR_LEN 256
  2115. /** Please open a TCP connection to this addr:port. */
  2116. #define SOCKS_COMMAND_CONNECT 0x01
  2117. /** Please turn this FQDN into an IP address, privately. */
  2118. #define SOCKS_COMMAND_RESOLVE 0xF0
  2119. /** Please turn this IP address into an FQDN, privately. */
  2120. #define SOCKS_COMMAND_RESOLVE_PTR 0xF1
  2121. #define SOCKS_COMMAND_IS_CONNECT(c) ((c)==SOCKS_COMMAND_CONNECT)
  2122. #define SOCKS_COMMAND_IS_RESOLVE(c) ((c)==SOCKS_COMMAND_RESOLVE || \
  2123. (c)==SOCKS_COMMAND_RESOLVE_PTR)
  2124. /** State of a SOCKS request from a user to an OP. Also used to encode other
  2125. * information for non-socks user request (such as those on TransPort and
  2126. * DNSPort) */
  2127. struct socks_request_t {
  2128. /** Which version of SOCKS did the client use? One of "0, 4, 5" -- where
  2129. * 0 means that no socks handshake ever took place, and this is just a
  2130. * stub connection (e.g. see connection_ap_make_link()). */
  2131. char socks_version;
  2132. int command; /**< What is this stream's goal? One from the above list. */
  2133. size_t replylen; /**< Length of <b>reply</b>. */
  2134. char reply[MAX_SOCKS_REPLY_LEN]; /**< Write an entry into this string if
  2135. * we want to specify our own socks reply,
  2136. * rather than using the default socks4 or
  2137. * socks5 socks reply. We use this for the
  2138. * two-stage socks5 handshake.
  2139. */
  2140. char address[MAX_SOCKS_ADDR_LEN]; /**< What address did the client ask to
  2141. connect to/resolve? */
  2142. uint16_t port; /**< What port did the client ask to connect to? */
  2143. unsigned has_finished : 1; /**< Has the SOCKS handshake finished? Used to
  2144. * make sure we send back a socks reply for
  2145. * every connection. */
  2146. };
  2147. /* all the function prototypes go here */
  2148. /********************************* buffers.c ***************************/
  2149. buf_t *buf_new(void);
  2150. buf_t *buf_new_with_capacity(size_t size);
  2151. void buf_free(buf_t *buf);
  2152. void buf_clear(buf_t *buf);
  2153. void buf_shrink(buf_t *buf);
  2154. void buf_shrink_freelists(int free_all);
  2155. void buf_dump_freelist_sizes(int severity);
  2156. size_t buf_datalen(const buf_t *buf);
  2157. size_t buf_allocation(const buf_t *buf);
  2158. size_t buf_slack(const buf_t *buf);
  2159. const char *_buf_peek_raw_buffer(const buf_t *buf);
  2160. int read_to_buf(int s, size_t at_most, buf_t *buf, int *reached_eof);
  2161. int read_to_buf_tls(tor_tls_t *tls, size_t at_most, buf_t *buf);
  2162. int flush_buf(int s, buf_t *buf, size_t sz, size_t *buf_flushlen);
  2163. int flush_buf_tls(tor_tls_t *tls, buf_t *buf, size_t sz, size_t *buf_flushlen);
  2164. int write_to_buf(const char *string, size_t string_len, buf_t *buf);
  2165. int write_to_buf_zlib(buf_t *buf, tor_zlib_state_t *state,
  2166. const char *data, size_t data_len, int done);
  2167. int move_buf_to_buf(buf_t *buf_out, buf_t *buf_in, size_t *buf_flushlen);
  2168. int fetch_from_buf(char *string, size_t string_len, buf_t *buf);
  2169. int fetch_var_cell_from_buf(buf_t *buf, var_cell_t **out);
  2170. int fetch_from_buf_http(buf_t *buf,
  2171. char **headers_out, size_t max_headerlen,
  2172. char **body_out, size_t *body_used, size_t max_bodylen,
  2173. int force_complete);
  2174. int fetch_from_buf_socks(buf_t *buf, socks_request_t *req,
  2175. int log_sockstype, int safe_socks);
  2176. int fetch_from_buf_line(buf_t *buf, char *data_out, size_t *data_len);
  2177. int peek_buf_has_control0_command(buf_t *buf);
  2178. void assert_buf_ok(buf_t *buf);
  2179. /********************************* circuitbuild.c **********************/
  2180. char *circuit_list_path(origin_circuit_t *circ, int verbose);
  2181. char *circuit_list_path_for_controller(origin_circuit_t *circ);
  2182. void circuit_log_path(int severity, unsigned int domain,
  2183. origin_circuit_t *circ);
  2184. void circuit_rep_hist_note_result(origin_circuit_t *circ);
  2185. origin_circuit_t *origin_circuit_init(uint8_t purpose, int flags);
  2186. origin_circuit_t *circuit_establish_circuit(uint8_t purpose,
  2187. extend_info_t *exit,
  2188. int flags);
  2189. int circuit_handle_first_hop(origin_circuit_t *circ);
  2190. void circuit_n_conn_done(or_connection_t *or_conn, int status);
  2191. int inform_testing_reachability(void);
  2192. int circuit_send_next_onion_skin(origin_circuit_t *circ);
  2193. void circuit_note_clock_jumped(int seconds_elapsed);
  2194. int circuit_extend(cell_t *cell, circuit_t *circ);
  2195. int circuit_init_cpath_crypto(crypt_path_t *cpath, const char *key_data,
  2196. int reverse);
  2197. int circuit_finish_handshake(origin_circuit_t *circ, uint8_t cell_type,
  2198. const char *reply);
  2199. int circuit_truncated(origin_circuit_t *circ, crypt_path_t *layer);
  2200. int onionskin_answer(or_circuit_t *circ, uint8_t cell_type,
  2201. const char *payload, const char *keys);
  2202. int circuit_all_predicted_ports_handled(time_t now, int *need_uptime,
  2203. int *need_capacity);
  2204. int circuit_append_new_exit(origin_circuit_t *circ, extend_info_t *info);
  2205. int circuit_extend_to_new_exit(origin_circuit_t *circ, extend_info_t *info);
  2206. void onion_append_to_cpath(crypt_path_t **head_ptr, crypt_path_t *new_hop);
  2207. extend_info_t *extend_info_alloc(const char *nickname, const char *digest,
  2208. crypto_pk_env_t *onion_key,
  2209. uint32_t addr, uint16_t port);
  2210. extend_info_t *extend_info_from_router(routerinfo_t *r);
  2211. extend_info_t *extend_info_dup(extend_info_t *info);
  2212. void extend_info_free(extend_info_t *info);
  2213. routerinfo_t *build_state_get_exit_router(cpath_build_state_t *state);
  2214. const char *build_state_get_exit_nickname(cpath_build_state_t *state);
  2215. void entry_guards_compute_status(void);
  2216. int entry_guard_register_connect_status(const char *digest, int succeeded,
  2217. time_t now);
  2218. void entry_nodes_should_be_added(void);
  2219. int entry_list_can_grow(or_options_t *options);
  2220. routerinfo_t *choose_random_entry(cpath_build_state_t *state);
  2221. int entry_guards_parse_state(or_state_t *state, int set, char **msg);
  2222. void entry_guards_update_state(or_state_t *state);
  2223. int getinfo_helper_entry_guards(control_connection_t *conn,
  2224. const char *question, char **answer);
  2225. void clear_bridge_list(void);
  2226. int routerinfo_is_a_configured_bridge(routerinfo_t *ri);
  2227. void bridge_add_from_config(uint32_t addr, uint16_t port, char *digest);
  2228. void retry_bridge_descriptor_fetch_directly(char *digest);
  2229. void fetch_bridge_descriptors(time_t now);
  2230. void learned_bridge_descriptor(routerinfo_t *ri, int from_cache);
  2231. int any_bridge_descriptors_known(void);
  2232. int bridges_known_but_down(void);
  2233. void bridges_retry_all(void);
  2234. void entry_guards_free_all(void);
  2235. /********************************* circuitlist.c ***********************/
  2236. circuit_t * _circuit_get_global_list(void);
  2237. const char *circuit_state_to_string(int state);
  2238. void circuit_dump_by_conn(connection_t *conn, int severity);
  2239. void circuit_set_p_circid_orconn(or_circuit_t *circ, uint16_t id,
  2240. or_connection_t *conn);
  2241. void circuit_set_n_circid_orconn(circuit_t *circ, uint16_t id,
  2242. or_connection_t *conn);
  2243. void circuit_set_state(circuit_t *circ, int state);
  2244. void circuit_close_all_marked(void);
  2245. origin_circuit_t *origin_circuit_new(void);
  2246. or_circuit_t *or_circuit_new(uint16_t p_circ_id, or_connection_t *p_conn);
  2247. circuit_t *circuit_get_by_circid_orconn(uint16_t circ_id,
  2248. or_connection_t *conn);
  2249. circuit_t *circuit_get_by_edge_conn(edge_connection_t *conn);
  2250. void circuit_unlink_all_from_or_conn(or_connection_t *conn, int reason);
  2251. origin_circuit_t *circuit_get_by_global_id(uint32_t id);
  2252. origin_circuit_t *circuit_get_by_rend_query_and_purpose(const char *rend_query,
  2253. uint8_t purpose);
  2254. origin_circuit_t *circuit_get_next_by_pk_and_purpose(origin_circuit_t *start,
  2255. const char *digest, uint8_t purpose);
  2256. or_circuit_t *circuit_get_rendezvous(const char *cookie);
  2257. or_circuit_t *circuit_get_intro_point(const char *digest);
  2258. origin_circuit_t *circuit_find_to_cannibalize(uint8_t purpose,
  2259. extend_info_t *info, int flags);
  2260. void circuit_mark_all_unused_circs(void);
  2261. void circuit_expire_all_dirty_circs(void);
  2262. void _circuit_mark_for_close(circuit_t *circ, int reason,
  2263. int line, const char *file);
  2264. int circuit_get_cpath_len(origin_circuit_t *circ);
  2265. crypt_path_t *circuit_get_cpath_hop(origin_circuit_t *circ, int hopnum);
  2266. void circuit_get_all_pending_on_or_conn(smartlist_t *out,
  2267. or_connection_t *or_conn);
  2268. int circuit_count_pending_on_or_conn(or_connection_t *or_conn);
  2269. #define circuit_mark_for_close(c, reason) \
  2270. _circuit_mark_for_close((c), (reason), __LINE__, _SHORT_FILE_)
  2271. void assert_cpath_layer_ok(const crypt_path_t *cp);
  2272. void assert_circuit_ok(const circuit_t *c);
  2273. void circuit_free_all(void);
  2274. /********************************* circuituse.c ************************/
  2275. void circuit_expire_building(time_t now);
  2276. void circuit_remove_handled_ports(smartlist_t *needed_ports);
  2277. int circuit_stream_is_being_handled(edge_connection_t *conn, uint16_t port,
  2278. int min);
  2279. void circuit_build_needed_circs(time_t now);
  2280. void circuit_detach_stream(circuit_t *circ, edge_connection_t *conn);
  2281. void reset_bandwidth_test(void);
  2282. int circuit_enough_testing_circs(void);
  2283. void circuit_has_opened(origin_circuit_t *circ);
  2284. void circuit_build_failed(origin_circuit_t *circ);
  2285. /** Flag to set when a circuit should have only a single hop. */
  2286. #define CIRCLAUNCH_ONEHOP_TUNNEL (1<<0)
  2287. /** Flag to set when a circuit needs to be built of high-uptime nodes */
  2288. #define CIRCLAUNCH_NEED_UPTIME (1<<1)
  2289. /** Flag to set when a circuit needs to be build of high-capcity nodes */
  2290. #define CIRCLAUNCH_NEED_CAPACITY (1<<2)
  2291. /** Flag to set when the last hop of a circuit doesn't need to be an
  2292. * exit node. */
  2293. #define CIRCLAUNCH_IS_INTERNAL (1<<3)
  2294. origin_circuit_t *circuit_launch_by_nickname(uint8_t purpose,
  2295. const char *exit_nickname,
  2296. int flags);
  2297. origin_circuit_t *circuit_launch_by_extend_info(uint8_t purpose,
  2298. extend_info_t *info,
  2299. int flags);
  2300. origin_circuit_t *circuit_launch_by_router(uint8_t purpose,
  2301. routerinfo_t *exit, int flags);
  2302. void circuit_reset_failure_count(int timeout);
  2303. int connection_ap_handshake_attach_chosen_circuit(edge_connection_t *conn,
  2304. origin_circuit_t *circ,
  2305. crypt_path_t *cpath);
  2306. int connection_ap_handshake_attach_circuit(edge_connection_t *conn);
  2307. /********************************* command.c ***************************/
  2308. void command_process_cell(cell_t *cell, or_connection_t *conn);
  2309. void command_process_var_cell(var_cell_t *cell, or_connection_t *conn);
  2310. extern uint64_t stats_n_padding_cells_processed;
  2311. extern uint64_t stats_n_create_cells_processed;
  2312. extern uint64_t stats_n_created_cells_processed;
  2313. extern uint64_t stats_n_relay_cells_processed;
  2314. extern uint64_t stats_n_destroy_cells_processed;
  2315. /********************************* config.c ***************************/
  2316. or_options_t *get_options(void);
  2317. int set_options(or_options_t *new_val, char **msg);
  2318. void config_free_all(void);
  2319. const char *safe_str(const char *address);
  2320. const char *escaped_safe_str(const char *address);
  2321. const char *get_version(void);
  2322. int config_get_lines(const char *string, config_line_t **result);
  2323. void config_free_lines(config_line_t *front);
  2324. int options_trial_assign(config_line_t *list, int use_defaults,
  2325. int clear_first, char **msg);
  2326. int resolve_my_address(int warn_severity, or_options_t *options,
  2327. uint32_t *addr, char **hostname_out);
  2328. int is_local_IP(uint32_t ip) ATTR_PURE;
  2329. void options_init(or_options_t *options);
  2330. int options_init_from_torrc(int argc, char **argv);
  2331. int option_is_recognized(const char *key);
  2332. const char *option_get_canonical_name(const char *key);
  2333. config_line_t *option_get_assignment(or_options_t *options,
  2334. const char *key);
  2335. int options_save_current(void);
  2336. const char *get_torrc_fname(void);
  2337. char *get_datadir_fname2_suffix(const char *sub1, const char *sub2,
  2338. const char *suffix);
  2339. /** Return a newly allocated string containing datadir/sub1. See
  2340. * get_datadir_fname2_suffix. */
  2341. #define get_datadir_fname(sub1) get_datadir_fname2_suffix((sub1), NULL, NULL)
  2342. /** Return a newly allocated string containing datadir/sub1/sub2. See
  2343. * get_datadir_fname2_suffix. */
  2344. #define get_datadir_fname2(sub1,sub2) \
  2345. get_datadir_fname2_suffix((sub1), (sub2), NULL)
  2346. /** Return a newly allocated string containing datadir/sub1suffix. See
  2347. * get_datadir_fname2_suffix. */
  2348. #define get_datadir_fname_suffix(sub1, suffix) \
  2349. get_datadir_fname2_suffix((sub1), NULL, (suffix))
  2350. or_state_t *get_or_state(void);
  2351. int or_state_save(time_t now);
  2352. int getinfo_helper_config(control_connection_t *conn,
  2353. const char *question, char **answer);
  2354. #ifdef CONFIG_PRIVATE
  2355. /* Used only by config.c and test.c */
  2356. or_options_t *options_new(void);
  2357. #endif
  2358. /********************************* connection.c ***************************/
  2359. const char *conn_type_to_string(int type);
  2360. const char *conn_state_to_string(int type, int state);
  2361. connection_t *connection_new(int type, int socket_family);
  2362. void connection_link_connections(connection_t *conn_a, connection_t *conn_b);
  2363. void connection_unregister_events(connection_t *conn);
  2364. void connection_free(connection_t *conn);
  2365. void connection_free_all(void);
  2366. void connection_about_to_close_connection(connection_t *conn);
  2367. void connection_close_immediate(connection_t *conn);
  2368. void _connection_mark_for_close(connection_t *conn,int line, const char *file);
  2369. #define connection_mark_for_close(c) \
  2370. _connection_mark_for_close((c), __LINE__, _SHORT_FILE_)
  2371. void connection_expire_held_open(void);
  2372. int connection_connect(connection_t *conn, const char *address, uint32_t addr,
  2373. uint16_t port);
  2374. int retry_all_listeners(smartlist_t *replaced_conns,
  2375. smartlist_t *new_conns);
  2376. int connection_bucket_write_limit(connection_t *conn, time_t now);
  2377. int global_write_bucket_low(connection_t *conn, size_t attempt, int priority);
  2378. void connection_bucket_init(void);
  2379. void connection_bucket_refill(int seconds_elapsed, time_t now);
  2380. int connection_handle_read(connection_t *conn);
  2381. int connection_fetch_from_buf(char *string, size_t len, connection_t *conn);
  2382. int connection_wants_to_flush(connection_t *conn);
  2383. int connection_outbuf_too_full(connection_t *conn);
  2384. int connection_handle_write(connection_t *conn, int force);
  2385. void _connection_write_to_buf_impl(const char *string, size_t len,
  2386. connection_t *conn, int zlib);
  2387. static void connection_write_to_buf(const char *string, size_t len,
  2388. connection_t *conn);
  2389. static void connection_write_to_buf_zlib(const char *string, size_t len,
  2390. dir_connection_t *conn, int done);
  2391. static INLINE void
  2392. connection_write_to_buf(const char *string, size_t len, connection_t *conn)
  2393. {
  2394. _connection_write_to_buf_impl(string, len, conn, 0);
  2395. }
  2396. static INLINE void
  2397. connection_write_to_buf_zlib(const char *string, size_t len,
  2398. dir_connection_t *conn, int done)
  2399. {
  2400. _connection_write_to_buf_impl(string, len, TO_CONN(conn), done ? -1 : 1);
  2401. }
  2402. or_connection_t *connection_or_exact_get_by_addr_port(uint32_t addr,
  2403. uint16_t port);
  2404. edge_connection_t *connection_get_by_global_id(uint32_t id);
  2405. connection_t *connection_get_by_type(int type);
  2406. connection_t *connection_get_by_type_purpose(int type, int purpose);
  2407. connection_t *connection_get_by_type_addr_port_purpose(int type, uint32_t addr,
  2408. uint16_t port, int purpose);
  2409. connection_t *connection_get_by_type_state(int type, int state);
  2410. connection_t *connection_get_by_type_state_rendquery(int type, int state,
  2411. const char *rendquery);
  2412. #define connection_speaks_cells(conn) ((conn)->type == CONN_TYPE_OR)
  2413. int connection_is_listener(connection_t *conn);
  2414. int connection_state_is_open(connection_t *conn);
  2415. int connection_state_is_connecting(connection_t *conn);
  2416. char *alloc_http_authenticator(const char *authenticator);
  2417. void assert_connection_ok(connection_t *conn, time_t now);
  2418. int connection_or_nonopen_was_started_here(or_connection_t *conn);
  2419. void connection_dump_buffer_mem_stats(int severity);
  2420. void remove_file_if_very_old(const char *fname, time_t now);
  2421. /********************************* connection_edge.c *************************/
  2422. #define connection_mark_unattached_ap(conn, endreason) \
  2423. _connection_mark_unattached_ap((conn), (endreason), __LINE__, _SHORT_FILE_)
  2424. void _connection_mark_unattached_ap(edge_connection_t *conn, int endreason,
  2425. int line, const char *file);
  2426. int connection_edge_reached_eof(edge_connection_t *conn);
  2427. int connection_edge_process_inbuf(edge_connection_t *conn,
  2428. int package_partial);
  2429. int connection_edge_destroy(uint16_t circ_id, edge_connection_t *conn);
  2430. int connection_edge_end(edge_connection_t *conn, char reason);
  2431. int connection_edge_end_errno(edge_connection_t *conn);
  2432. int connection_edge_finished_flushing(edge_connection_t *conn);
  2433. int connection_edge_finished_connecting(edge_connection_t *conn);
  2434. int connection_ap_handshake_send_begin(edge_connection_t *ap_conn);
  2435. int connection_ap_handshake_send_resolve(edge_connection_t *ap_conn);
  2436. edge_connection_t *connection_ap_make_link(char *address, uint16_t port,
  2437. const char *digest,
  2438. int use_begindir, int want_onehop);
  2439. void connection_ap_handshake_socks_reply(edge_connection_t *conn, char *reply,
  2440. size_t replylen,
  2441. int endreason);
  2442. void connection_ap_handshake_socks_resolved(edge_connection_t *conn,
  2443. int answer_type,
  2444. size_t answer_len,
  2445. const char *answer,
  2446. int ttl,
  2447. time_t expires);
  2448. int connection_exit_begin_conn(cell_t *cell, circuit_t *circ);
  2449. int connection_exit_begin_resolve(cell_t *cell, or_circuit_t *circ);
  2450. void connection_exit_connect(edge_connection_t *conn);
  2451. int connection_edge_is_rendezvous_stream(edge_connection_t *conn);
  2452. int connection_ap_can_use_exit(edge_connection_t *conn, routerinfo_t *exit);
  2453. void connection_ap_expire_beginning(void);
  2454. void connection_ap_attach_pending(void);
  2455. void circuit_discard_optional_exit_enclaves(extend_info_t *info);
  2456. int connection_ap_detach_retriable(edge_connection_t *conn,
  2457. origin_circuit_t *circ,
  2458. int reason);
  2459. int connection_ap_process_transparent(edge_connection_t *conn);
  2460. int address_is_invalid_destination(const char *address, int client);
  2461. void addressmap_init(void);
  2462. void addressmap_clean(time_t now);
  2463. void addressmap_clear_configured(void);
  2464. void addressmap_clear_transient(void);
  2465. void addressmap_free_all(void);
  2466. int addressmap_rewrite(char *address, size_t maxlen, time_t *expires_out);
  2467. int addressmap_have_mapping(const char *address);
  2468. void addressmap_register(const char *address, char *new_address,
  2469. time_t expires);
  2470. int parse_virtual_addr_network(const char *val, int validate_only,
  2471. char **msg);
  2472. int client_dns_incr_failures(const char *address);
  2473. void client_dns_clear_failures(const char *address);
  2474. void client_dns_set_addressmap(const char *address, uint32_t val,
  2475. const char *exitname, int ttl);
  2476. const char *addressmap_register_virtual_address(int type, char *new_address);
  2477. void addressmap_get_mappings(smartlist_t *sl, time_t min_expires,
  2478. time_t max_expires, int want_expiry);
  2479. int connection_ap_handshake_rewrite_and_attach(edge_connection_t *conn,
  2480. origin_circuit_t *circ,
  2481. crypt_path_t *cpath);
  2482. int hostname_is_noconnect_address(const char *address);
  2483. void set_exit_redirects(smartlist_t *lst);
  2484. typedef enum hostname_type_t {
  2485. NORMAL_HOSTNAME, ONION_HOSTNAME, EXIT_HOSTNAME, BAD_HOSTNAME
  2486. } hostname_type_t;
  2487. hostname_type_t parse_extended_hostname(char *address);
  2488. /********************************* connection_or.c ***************************/
  2489. void connection_or_remove_from_identity_map(or_connection_t *conn);
  2490. void connection_or_clear_identity_map(void);
  2491. or_connection_t *connection_or_get_by_identity_digest(const char *digest);
  2492. int connection_or_reached_eof(or_connection_t *conn);
  2493. int connection_or_process_inbuf(or_connection_t *conn);
  2494. int connection_or_flushed_some(or_connection_t *conn);
  2495. int connection_or_finished_flushing(or_connection_t *conn);
  2496. int connection_or_finished_connecting(or_connection_t *conn);
  2497. #if 0
  2498. int connection_or_finish_or_handshake(or_connection_t *conn);
  2499. #endif
  2500. or_connection_t *connection_or_connect(uint32_t addr, uint16_t port,
  2501. const char *id_digest);
  2502. int connection_tls_start_handshake(or_connection_t *conn, int receiving);
  2503. int connection_tls_continue_handshake(or_connection_t *conn);
  2504. void or_handshake_state_free(or_handshake_state_t *state);
  2505. int connection_or_set_state_open(or_connection_t *conn);
  2506. void connection_or_write_cell_to_buf(const cell_t *cell,
  2507. or_connection_t *conn);
  2508. void connection_or_write_var_cell_to_buf(const var_cell_t *cell,
  2509. or_connection_t *conn);
  2510. int connection_or_send_destroy(uint16_t circ_id, or_connection_t *conn,
  2511. int reason);
  2512. int connection_or_send_netinfo(or_connection_t *conn);
  2513. int connection_or_send_cert(or_connection_t *conn);
  2514. int connection_or_send_link_auth(or_connection_t *conn);
  2515. int connection_or_compute_link_auth_hmac(or_connection_t *conn,
  2516. char *hmac_out);
  2517. int is_or_protocol_version_known(uint16_t version);
  2518. void cell_pack(packed_cell_t *dest, const cell_t *src);
  2519. void var_cell_pack_header(const var_cell_t *cell, char *hdr_out);
  2520. var_cell_t *var_cell_new(uint16_t payload_len);
  2521. void var_cell_free(var_cell_t *cell);
  2522. int connection_or_act_on_netinfo(or_connection_t *conn);
  2523. /********************************* control.c ***************************/
  2524. typedef enum circuit_status_event_t {
  2525. CIRC_EVENT_LAUNCHED = 0,
  2526. CIRC_EVENT_BUILT = 1,
  2527. CIRC_EVENT_EXTENDED = 2,
  2528. CIRC_EVENT_FAILED = 3,
  2529. CIRC_EVENT_CLOSED = 4,
  2530. } circuit_status_event_t;
  2531. typedef enum stream_status_event_t {
  2532. STREAM_EVENT_SENT_CONNECT = 0,
  2533. STREAM_EVENT_SENT_RESOLVE = 1,
  2534. STREAM_EVENT_SUCCEEDED = 2,
  2535. STREAM_EVENT_FAILED = 3,
  2536. STREAM_EVENT_CLOSED = 4,
  2537. STREAM_EVENT_NEW = 5,
  2538. STREAM_EVENT_NEW_RESOLVE = 6,
  2539. STREAM_EVENT_FAILED_RETRIABLE = 7,
  2540. STREAM_EVENT_REMAP = 8
  2541. } stream_status_event_t;
  2542. typedef enum or_conn_status_event_t {
  2543. OR_CONN_EVENT_LAUNCHED = 0,
  2544. OR_CONN_EVENT_CONNECTED = 1,
  2545. OR_CONN_EVENT_FAILED = 2,
  2546. OR_CONN_EVENT_CLOSED = 3,
  2547. OR_CONN_EVENT_NEW = 4,
  2548. } or_conn_status_event_t;
  2549. void control_update_global_event_mask(void);
  2550. void control_adjust_event_log_severity(void);
  2551. /** Execute the statement <b>stmt</b>, which may log events concerning the
  2552. * connection <b>conn</b>. To prevent infinite loops, disable log messages
  2553. * being sent to controllers if <b>conn</b> is a control connection.
  2554. *
  2555. * Stmt must not contain any return or goto statements.
  2556. */
  2557. #define CONN_LOG_PROTECT(conn, stmt) \
  2558. STMT_BEGIN \
  2559. int _log_conn_is_control = (conn && conn->type == CONN_TYPE_CONTROL); \
  2560. if (_log_conn_is_control) \
  2561. disable_control_logging(); \
  2562. STMT_BEGIN stmt; STMT_END; \
  2563. if (_log_conn_is_control) \
  2564. enable_control_logging(); \
  2565. STMT_END
  2566. /** Log information about the connection <b>conn</b>, protecting it as with
  2567. * CONN_LOG_PROTECT. Example:
  2568. *
  2569. * LOG_FN_CONN(conn, (LOG_DEBUG, "Socket %d wants to write", conn->s));
  2570. **/
  2571. #define LOG_FN_CONN(conn, args) \
  2572. CONN_LOG_PROTECT(conn, log_fn args)
  2573. int connection_control_finished_flushing(control_connection_t *conn);
  2574. int connection_control_reached_eof(control_connection_t *conn);
  2575. int connection_control_process_inbuf(control_connection_t *conn);
  2576. #define EVENT_AUTHDIR_NEWDESCS 0x000D
  2577. #define EVENT_NS 0x000F
  2578. int control_event_is_interesting(int event);
  2579. int control_event_circuit_status(origin_circuit_t *circ,
  2580. circuit_status_event_t e, int reason);
  2581. int control_event_stream_status(edge_connection_t *conn,
  2582. stream_status_event_t e,
  2583. int reason);
  2584. int control_tls_error_to_reason(int e);
  2585. int control_event_or_conn_status(or_connection_t *conn,
  2586. or_conn_status_event_t e, int reason);
  2587. int control_event_bandwidth_used(uint32_t n_read, uint32_t n_written);
  2588. int control_event_stream_bandwidth_used(void);
  2589. void control_event_logmsg(int severity, unsigned int domain, const char *msg);
  2590. int control_event_descriptors_changed(smartlist_t *routers);
  2591. int control_event_address_mapped(const char *from, const char *to,
  2592. time_t expires, const char *error);
  2593. int control_event_or_authdir_new_descriptor(const char *action,
  2594. const char *desc,
  2595. size_t desclen,
  2596. const char *msg);
  2597. int control_event_my_descriptor_changed(void);
  2598. int control_event_networkstatus_changed(smartlist_t *statuses);
  2599. int control_event_networkstatus_changed_single(routerstatus_t *rs);
  2600. int control_event_general_status(int severity, const char *format, ...)
  2601. CHECK_PRINTF(2,3);
  2602. int control_event_client_status(int severity, const char *format, ...)
  2603. CHECK_PRINTF(2,3);
  2604. int control_event_server_status(int severity, const char *format, ...)
  2605. CHECK_PRINTF(2,3);
  2606. int control_event_guard(const char *nickname, const char *digest,
  2607. const char *status);
  2608. int init_cookie_authentication(int enabled);
  2609. smartlist_t *decode_hashed_passwords(config_line_t *passwords);
  2610. void disable_control_logging(void);
  2611. void enable_control_logging(void);
  2612. #ifdef CONTROL_PRIVATE
  2613. /* Used only by control.c and test.c */
  2614. size_t write_escaped_data(const char *data, size_t len, char **out);
  2615. size_t read_escaped_data(const char *data, size_t len, char **out);
  2616. #endif
  2617. /********************************* cpuworker.c *****************************/
  2618. void cpu_init(void);
  2619. void cpuworkers_rotate(void);
  2620. int connection_cpu_finished_flushing(connection_t *conn);
  2621. int connection_cpu_reached_eof(connection_t *conn);
  2622. int connection_cpu_process_inbuf(connection_t *conn);
  2623. int assign_onionskin_to_cpuworker(connection_t *cpuworker,
  2624. or_circuit_t *circ,
  2625. char *onionskin);
  2626. /********************************* directory.c ***************************/
  2627. int directories_have_accepted_server_descriptor(void);
  2628. char *authority_type_to_string(authority_type_t auth);
  2629. void directory_post_to_dirservers(uint8_t dir_purpose, uint8_t router_purpose,
  2630. authority_type_t type, const char *payload,
  2631. size_t payload_len, size_t extrainfo_len);
  2632. void directory_get_from_dirserver(uint8_t dir_purpose, uint8_t router_purpose,
  2633. const char *resource,
  2634. int retry_if_no_servers);
  2635. void directory_get_from_all_authorities(uint8_t dir_purpose,
  2636. uint8_t router_purpose,
  2637. const char *resource);
  2638. void directory_initiate_command_routerstatus(routerstatus_t *status,
  2639. uint8_t dir_purpose,
  2640. uint8_t router_purpose,
  2641. int anonymized_connection,
  2642. const char *resource,
  2643. const char *payload,
  2644. size_t payload_len,
  2645. time_t if_modified_since);
  2646. int parse_http_response(const char *headers, int *code, time_t *date,
  2647. compress_method_t *compression, char **response);
  2648. int connection_dir_is_encrypted(dir_connection_t *conn);
  2649. int connection_dir_reached_eof(dir_connection_t *conn);
  2650. int connection_dir_process_inbuf(dir_connection_t *conn);
  2651. int connection_dir_finished_flushing(dir_connection_t *conn);
  2652. int connection_dir_finished_connecting(dir_connection_t *conn);
  2653. void connection_dir_request_failed(dir_connection_t *conn);
  2654. void directory_initiate_command(const char *address, uint32_t addr,
  2655. uint16_t or_port, uint16_t dir_port,
  2656. int supports_begindir, const char *digest,
  2657. uint8_t dir_purpose, uint8_t router_purpose,
  2658. int anonymized_connection,
  2659. const char *resource,
  2660. const char *payload, size_t payload_len,
  2661. time_t if_modified_since);
  2662. int dir_split_resource_into_fingerprints(const char *resource,
  2663. smartlist_t *fp_out, int *compresseed_out,
  2664. int decode_hex, int sort_uniq);
  2665. char *directory_dump_request_log(void);
  2666. int router_supports_extrainfo(const char *identity_digest, int is_authority);
  2667. time_t download_status_increment_failure(download_status_t *dls,
  2668. int status_code, const char *item,
  2669. int server, time_t now);
  2670. #define download_status_failed(dls, sc) \
  2671. download_status_increment_failure((dls), (sc), NULL, \
  2672. get_options()->DirPort, time(NULL))
  2673. void download_status_reset(download_status_t *dls);
  2674. static int download_status_is_ready(download_status_t *dls, time_t now,
  2675. int max_failures);
  2676. /** Return true iff, as of <b>now</b>, the resource tracked by <b>dls</b> is
  2677. * ready to get its download reattempted. */
  2678. static INLINE int
  2679. download_status_is_ready(download_status_t *dls, time_t now,
  2680. int max_failures)
  2681. {
  2682. return (dls->n_download_failures <= max_failures
  2683. && dls->next_attempt_at <= now);
  2684. }
  2685. /********************************* dirserv.c ***************************/
  2686. /** Maximum allowable length of a version line in a networkstatus. */
  2687. #define MAX_V_LINE_LEN 128
  2688. /** Length of "r Authority BadDirectory BadExit Exit Fast Guard HSDir Named
  2689. * Running Stable Unnamed V2Dir Valid\n". */
  2690. #define MAX_FLAG_LINE_LEN 96
  2691. /** Amount of space to allocate for each entry: r, s, and v lines. */
  2692. #define RS_ENTRY_LEN \
  2693. ( /* first line */ \
  2694. MAX_NICKNAME_LEN+BASE64_DIGEST_LEN*2+ISO_TIME_LEN+INET_NTOA_BUF_LEN+ \
  2695. 5*2 /* ports */ + 10 /* punctuation */ + \
  2696. /* second line */ \
  2697. MAX_FLAG_LINE_LEN + \
  2698. /* v line. */ \
  2699. MAX_V_LINE_LEN \
  2700. )
  2701. #define UNNAMED_ROUTER_NICKNAME "Unnamed"
  2702. int connection_dirserv_flushed_some(dir_connection_t *conn);
  2703. int dirserv_add_own_fingerprint(const char *nickname, crypto_pk_env_t *pk);
  2704. int dirserv_load_fingerprint_file(void);
  2705. void dirserv_free_fingerprint_list(void);
  2706. const char *dirserv_get_nickname_by_digest(const char *digest);
  2707. int dirserv_add_multiple_descriptors(const char *desc, uint8_t purpose,
  2708. const char *source,
  2709. const char **msg);
  2710. int dirserv_add_descriptor(routerinfo_t *ri, const char **msg);
  2711. int getinfo_helper_dirserv_unregistered(control_connection_t *conn,
  2712. const char *question, char **answer);
  2713. void dirserv_free_descriptors(void);
  2714. void dirserv_set_router_is_running(routerinfo_t *router, time_t now);
  2715. int list_server_status_v1(smartlist_t *routers, char **router_status_out,
  2716. int for_controller);
  2717. int dirserv_dump_directory_to_string(char **dir_out,
  2718. crypto_pk_env_t *private_key);
  2719. int directory_fetches_from_authorities(or_options_t *options);
  2720. int directory_fetches_dir_info_early(or_options_t *options);
  2721. int directory_fetches_dir_info_later(or_options_t *options);
  2722. int directory_caches_v2_dir_info(or_options_t *options);
  2723. #define directory_caches_v1_dir_info(o) directory_caches_v2_dir_info(o)
  2724. int directory_caches_dir_info(or_options_t *options);
  2725. int directory_permits_begindir_requests(or_options_t *options);
  2726. int directory_permits_controller_requests(or_options_t *options);
  2727. int directory_too_idle_to_fetch_descriptors(or_options_t *options, time_t now);
  2728. void directory_set_dirty(void);
  2729. cached_dir_t *dirserv_get_directory(void);
  2730. cached_dir_t *dirserv_get_runningrouters(void);
  2731. cached_dir_t *dirserv_get_consensus(void);
  2732. void dirserv_set_cached_directory(const char *directory, time_t when,
  2733. int is_running_routers);
  2734. void dirserv_set_cached_networkstatus_v2(const char *directory,
  2735. const char *identity,
  2736. time_t published);
  2737. void dirserv_set_cached_networkstatus_v3(const char *consensus,
  2738. time_t published);
  2739. void dirserv_clear_old_networkstatuses(time_t cutoff);
  2740. void dirserv_clear_old_v1_info(time_t now);
  2741. void dirserv_get_networkstatus_v2(smartlist_t *result, const char *key);
  2742. void dirserv_get_networkstatus_v2_fingerprints(smartlist_t *result,
  2743. const char *key);
  2744. int dirserv_get_routerdesc_fingerprints(smartlist_t *fps_out, const char *key,
  2745. const char **msg,
  2746. int for_unencrypted_conn);
  2747. int dirserv_get_routerdescs(smartlist_t *descs_out, const char *key,
  2748. const char **msg);
  2749. void dirserv_orconn_tls_done(const char *address,
  2750. uint16_t or_port,
  2751. const char *digest_rcvd,
  2752. int as_advertised);
  2753. void dirserv_test_reachability(time_t now, int try_all);
  2754. int authdir_wants_to_reject_router(routerinfo_t *ri, const char **msg,
  2755. int complain);
  2756. int dirserv_would_reject_router(routerstatus_t *rs);
  2757. int dirserv_remove_old_statuses(smartlist_t *fps, time_t cutoff);
  2758. int dirserv_have_any_serverdesc(smartlist_t *fps, int spool_src);
  2759. size_t dirserv_estimate_data_size(smartlist_t *fps, int is_serverdescs,
  2760. int compressed);
  2761. int routerstatus_format_entry(char *buf, size_t buf_len,
  2762. routerstatus_t *rs, const char *platform,
  2763. int first_line_only);
  2764. void dirserv_free_all(void);
  2765. void cached_dir_decref(cached_dir_t *d);
  2766. cached_dir_t *new_cached_dir(char *s, time_t published);
  2767. /********************************* dirvote.c ************************/
  2768. /** Lowest allowable value for VoteSeconds. */
  2769. #define MIN_VOTE_SECONDS 20
  2770. /** Lowest allowable value for DistSeconds. */
  2771. #define MIN_DIST_SECONDS 20
  2772. /** Smallest allowable voting interval. */
  2773. #define MIN_VOTE_INTERVAL 300
  2774. /** If there is no consensus, what interval do we default to? */
  2775. #define DEFAULT_VOTING_INTERVAL_WHEN_NO_CONSENSUS (30*60)
  2776. void dirvote_free_all(void);
  2777. /* vote manipulation */
  2778. char *networkstatus_compute_consensus(smartlist_t *votes,
  2779. int total_authorities,
  2780. crypto_pk_env_t *identity_key,
  2781. crypto_pk_env_t *signing_key);
  2782. int networkstatus_add_detached_signatures(networkstatus_t *target,
  2783. ns_detached_signatures_t *sigs,
  2784. const char **msg_out);
  2785. char *networkstatus_get_detached_signatures(networkstatus_t *consensus);
  2786. void ns_detached_signatures_free(ns_detached_signatures_t *s);
  2787. /* cert manipulation */
  2788. authority_cert_t *authority_cert_dup(authority_cert_t *cert);
  2789. /** Describes the schedule by which votes should be generated. */
  2790. typedef struct vote_timing_t {
  2791. int vote_interval;
  2792. int n_intervals_valid;
  2793. int vote_delay;
  2794. int dist_delay;
  2795. } vote_timing_t;
  2796. /* vote scheduling */
  2797. void dirvote_get_preferred_voting_intervals(vote_timing_t *timing_out);
  2798. time_t dirvote_get_start_of_next_interval(time_t now, int interval);
  2799. void dirvote_recalculate_timing(or_options_t *options, time_t now);
  2800. void dirvote_act(or_options_t *options, time_t now);
  2801. /* invoked on timers and by outside triggers. */
  2802. struct pending_vote_t * dirvote_add_vote(const char *vote_body,
  2803. const char **msg_out,
  2804. int *status_out);
  2805. int dirvote_add_signatures(const char *detached_signatures_body,
  2806. const char *source,
  2807. const char **msg_out);
  2808. /* Item access */
  2809. const char *dirvote_get_pending_consensus(void);
  2810. const char *dirvote_get_pending_detached_signatures(void);
  2811. #define DGV_BY_ID 1
  2812. #define DGV_INCLUDE_PENDING 2
  2813. #define DGV_INCLUDE_PREVIOUS 4
  2814. const cached_dir_t *dirvote_get_vote(const char *fp, int flags);
  2815. void set_routerstatus_from_routerinfo(routerstatus_t *rs,
  2816. routerinfo_t *ri, time_t now,
  2817. int naming, int exits_can_be_guards,
  2818. int listbadexits, int listbaddirs);
  2819. void router_clear_status_flags(routerinfo_t *ri);
  2820. networkstatus_t *
  2821. dirserv_generate_networkstatus_vote_obj(crypto_pk_env_t *private_key,
  2822. authority_cert_t *cert);
  2823. #ifdef DIRVOTE_PRIVATE
  2824. char *
  2825. format_networkstatus_vote(crypto_pk_env_t *private_key,
  2826. networkstatus_t *v3_ns);
  2827. #endif
  2828. /********************************* dns.c ***************************/
  2829. int dns_init(void);
  2830. void dns_free_all(void);
  2831. uint32_t dns_clip_ttl(uint32_t ttl);
  2832. int dns_reset(void);
  2833. void connection_dns_remove(edge_connection_t *conn);
  2834. void assert_connection_edge_not_dns_pending(edge_connection_t *conn);
  2835. void assert_all_pending_dns_resolves_ok(void);
  2836. void dns_cancel_pending_resolve(const char *question);
  2837. int dns_resolve(edge_connection_t *exitconn);
  2838. void dns_launch_correctness_checks(void);
  2839. int dns_seems_to_be_broken(void);
  2840. void dns_reset_correctness_checks(void);
  2841. /********************************* dnsserv.c ************************/
  2842. void dnsserv_configure_listener(connection_t *conn);
  2843. void dnsserv_close_listener(connection_t *conn);
  2844. void dnsserv_resolved(edge_connection_t *conn,
  2845. int answer_type,
  2846. size_t answer_len,
  2847. const char *answer,
  2848. int ttl);
  2849. void dnsserv_reject_request(edge_connection_t *conn);
  2850. int dnsserv_launch_request(const char *name, int is_reverse);
  2851. /********************************* geoip.c **************************/
  2852. #ifdef GEOIP_PRIVATE
  2853. int geoip_parse_entry(const char *line);
  2854. #endif
  2855. int geoip_load_file(const char *filename);
  2856. int geoip_get_country_by_ip(uint32_t ipaddr);
  2857. int geoip_get_n_countries(void);
  2858. const char *geoip_get_country_name(int num);
  2859. int geoip_is_loaded(void);
  2860. void geoip_note_client_seen(uint32_t addr, time_t now);
  2861. void geoip_remove_old_clients(time_t cutoff);
  2862. time_t geoip_get_history_start(void);
  2863. char *geoip_get_client_history(time_t now);
  2864. int getinfo_helper_geoip(control_connection_t *control_conn,
  2865. const char *question, char **answer);
  2866. void geoip_free_all(void);
  2867. /********************************* hibernate.c **********************/
  2868. int accounting_parse_options(or_options_t *options, int validate_only);
  2869. int accounting_is_enabled(or_options_t *options);
  2870. void configure_accounting(time_t now);
  2871. void accounting_run_housekeeping(time_t now);
  2872. void accounting_add_bytes(size_t n_read, size_t n_written, int seconds);
  2873. int accounting_record_bandwidth_usage(time_t now, or_state_t *state);
  2874. void hibernate_begin_shutdown(void);
  2875. int we_are_hibernating(void);
  2876. void consider_hibernation(time_t now);
  2877. int getinfo_helper_accounting(control_connection_t *conn,
  2878. const char *question, char **answer);
  2879. void accounting_set_bandwidth_usage_from_state(or_state_t *state);
  2880. /********************************* main.c ***************************/
  2881. extern int has_completed_circuit;
  2882. int connection_add(connection_t *conn);
  2883. int connection_remove(connection_t *conn);
  2884. int connection_in_array(connection_t *conn);
  2885. void add_connection_to_closeable_list(connection_t *conn);
  2886. int connection_is_on_closeable_list(connection_t *conn);
  2887. smartlist_t *get_connection_array(void);
  2888. void connection_watch_events(connection_t *conn, short events);
  2889. int connection_is_reading(connection_t *conn);
  2890. void connection_stop_reading(connection_t *conn);
  2891. void connection_start_reading(connection_t *conn);
  2892. int connection_is_writing(connection_t *conn);
  2893. void connection_stop_writing(connection_t *conn);
  2894. void connection_start_writing(connection_t *conn);
  2895. void connection_stop_reading_from_linked_conn(connection_t *conn);
  2896. void directory_all_unreachable(time_t now);
  2897. void directory_info_has_arrived(time_t now, int from_cache);
  2898. void ip_address_changed(int at_interface);
  2899. void dns_servers_relaunch_checks(void);
  2900. void control_signal_act(int the_signal);
  2901. void handle_signals(int is_parent);
  2902. void tor_cleanup(void);
  2903. void tor_free_all(int postfork);
  2904. int tor_main(int argc, char *argv[]);
  2905. #ifdef MAIN_PRIVATE
  2906. int do_main_loop(void);
  2907. int do_list_fingerprint(void);
  2908. void do_hash_password(void);
  2909. int tor_init(int argc, char **argv);
  2910. #endif
  2911. /********************************* networkstatus.c *********************/
  2912. /** How old do we allow a v2 network-status to get before removing it
  2913. * completely? */
  2914. #define MAX_NETWORKSTATUS_AGE (10*24*60*60)
  2915. typedef enum {
  2916. NS_FROM_CACHE, NS_FROM_DIR_BY_FP, NS_FROM_DIR_ALL, NS_GENERATED
  2917. } networkstatus_source_t;
  2918. typedef enum version_status_t {
  2919. VS_RECOMMENDED=0, /**< This version is listed as recommended. */
  2920. VS_OLD=1, /**< This version is older than any recommended version. */
  2921. VS_NEW=2, /**< This version is newer than any recommended version. */
  2922. VS_NEW_IN_SERIES=3, /**< This version is newer than any recommended version
  2923. * in its series, but later recommended versions exist.
  2924. */
  2925. VS_UNRECOMMENDED=4, /**< This version is not recommended (general case). */
  2926. VS_EMPTY=5, /**< The version list was empty; no agreed-on versions. */
  2927. VS_UNKNOWN, /**< We have no idea. */
  2928. } version_status_t;
  2929. void networkstatus_reset_warnings(void);
  2930. void networkstatus_reset_download_failures(void);
  2931. int router_reload_v2_networkstatus(void);
  2932. int router_reload_consensus_networkstatus(void);
  2933. void routerstatus_free(routerstatus_t *rs);
  2934. void networkstatus_v2_free(networkstatus_v2_t *ns);
  2935. void networkstatus_vote_free(networkstatus_t *ns);
  2936. networkstatus_voter_info_t *networkstatus_get_voter_by_id(
  2937. networkstatus_t *vote,
  2938. const char *identity);
  2939. int networkstatus_check_consensus_signature(networkstatus_t *consensus,
  2940. int warn);
  2941. int networkstatus_check_voter_signature(networkstatus_t *consensus,
  2942. networkstatus_voter_info_t *voter,
  2943. authority_cert_t *cert);
  2944. char *networkstatus_get_cache_filename(const char *identity_digest);
  2945. int router_set_networkstatus_v2(const char *s, time_t arrived_at,
  2946. networkstatus_source_t source,
  2947. smartlist_t *requested_fingerprints);
  2948. void networkstatus_v2_list_clean(time_t now);
  2949. routerstatus_t *networkstatus_v2_find_entry(networkstatus_v2_t *ns,
  2950. const char *digest);
  2951. routerstatus_t *networkstatus_vote_find_entry(networkstatus_t *ns,
  2952. const char *digest);
  2953. int networkstatus_vote_find_entry_idx(networkstatus_t *ns,
  2954. const char *digest, int *found_out);
  2955. const smartlist_t *networkstatus_get_v2_list(void);
  2956. download_status_t *router_get_dl_status_by_descriptor_digest(const char *d);
  2957. routerstatus_t *router_get_consensus_status_by_id(const char *digest);
  2958. routerstatus_t *router_get_consensus_status_by_descriptor_digest(
  2959. const char *digest);
  2960. routerstatus_t *router_get_consensus_status_by_nickname(const char *nickname,
  2961. int warn_if_unnamed);
  2962. const char *networkstatus_get_router_digest_by_nickname(const char *nickname);
  2963. int networkstatus_nickname_is_unnamed(const char *nickname);
  2964. void networkstatus_consensus_download_failed(int status_code);
  2965. void update_consensus_networkstatus_fetch_time(time_t now);
  2966. int should_delay_dir_fetches(or_options_t *options);
  2967. void update_networkstatus_downloads(time_t now);
  2968. void update_certificate_downloads(time_t now);
  2969. networkstatus_v2_t *networkstatus_v2_get_by_digest(const char *digest);
  2970. networkstatus_t *networkstatus_get_latest_consensus(void);
  2971. networkstatus_t *networkstatus_get_live_consensus(time_t now);
  2972. networkstatus_t *networkstatus_get_reasonably_live_consensus(time_t now);
  2973. #define NSSET_FROM_CACHE 1
  2974. #define NSSET_WAS_WAITING_FOR_CERTS 2
  2975. #define NSSET_DONT_DOWNLOAD_CERTS 4
  2976. int networkstatus_set_current_consensus(const char *consensus, unsigned flags);
  2977. void networkstatus_note_certs_arrived(void);
  2978. void routers_update_all_from_networkstatus(time_t now, int dir_version);
  2979. void routerstatus_list_update_from_consensus_networkstatus(time_t now);
  2980. void routers_update_status_from_consensus_networkstatus(smartlist_t *routers,
  2981. int reset_failures);
  2982. void signed_descs_update_status_from_consensus_networkstatus(
  2983. smartlist_t *descs);
  2984. char *networkstatus_getinfo_helper_single(routerstatus_t *rs);
  2985. char *networkstatus_getinfo_by_purpose(const char *purpose_string, time_t now);
  2986. void networkstatus_dump_bridge_status_to_file(time_t now);
  2987. int getinfo_helper_networkstatus(control_connection_t *conn,
  2988. const char *question, char **answer);
  2989. void networkstatus_free_all(void);
  2990. /********************************* ntmain.c ***************************/
  2991. #ifdef MS_WINDOWS
  2992. #define NT_SERVICE
  2993. #endif
  2994. #ifdef NT_SERVICE
  2995. int nt_service_parse_options(int argc, char **argv, int *should_exit);
  2996. int nt_service_is_stopping(void);
  2997. void nt_service_set_state(DWORD state);
  2998. #else
  2999. #define nt_service_is_stopping() (0)
  3000. #endif
  3001. /********************************* onion.c ***************************/
  3002. int onion_pending_add(or_circuit_t *circ, char *onionskin);
  3003. or_circuit_t *onion_next_task(char **onionskin_out);
  3004. void onion_pending_remove(or_circuit_t *circ);
  3005. int onion_skin_create(crypto_pk_env_t *router_key,
  3006. crypto_dh_env_t **handshake_state_out,
  3007. char *onion_skin_out);
  3008. int onion_skin_server_handshake(const char *onion_skin,
  3009. crypto_pk_env_t *private_key,
  3010. crypto_pk_env_t *prev_private_key,
  3011. char *handshake_reply_out,
  3012. char *key_out,
  3013. size_t key_out_len);
  3014. int onion_skin_client_handshake(crypto_dh_env_t *handshake_state,
  3015. const char *handshake_reply,
  3016. char *key_out,
  3017. size_t key_out_len);
  3018. int fast_server_handshake(const char *key_in,
  3019. char *handshake_reply_out,
  3020. char *key_out,
  3021. size_t key_out_len);
  3022. int fast_client_handshake(const char *handshake_state,
  3023. const char *handshake_reply_out,
  3024. char *key_out,
  3025. size_t key_out_len);
  3026. void clear_pending_onions(void);
  3027. /********************************* policies.c ************************/
  3028. /* (length of "accept 255.255.255.255/255.255.255.255:65535-65535\n" plus a
  3029. * nul.)
  3030. */
  3031. #define POLICY_BUF_LEN 52
  3032. typedef enum {
  3033. ADDR_POLICY_ACCEPTED=0,
  3034. ADDR_POLICY_REJECTED=-1,
  3035. ADDR_POLICY_PROBABLY_ACCEPTED=1,
  3036. ADDR_POLICY_PROBABLY_REJECTED=2
  3037. } addr_policy_result_t;
  3038. int firewall_is_fascist_or(void);
  3039. int fascist_firewall_allows_address_or(uint32_t addr, uint16_t port);
  3040. int fascist_firewall_allows_address_dir(uint32_t addr, uint16_t port);
  3041. int dir_policy_permits_address(uint32_t addr);
  3042. int socks_policy_permits_address(uint32_t addr);
  3043. int authdir_policy_permits_address(uint32_t addr, uint16_t port);
  3044. int authdir_policy_valid_address(uint32_t addr, uint16_t port);
  3045. int authdir_policy_baddir_address(uint32_t addr, uint16_t port);
  3046. int authdir_policy_badexit_address(uint32_t addr, uint16_t port);
  3047. int validate_addr_policies(or_options_t *options, char **msg);
  3048. void policy_expand_private(smartlist_t **policy);
  3049. int policies_parse_from_options(or_options_t *options);
  3050. addr_policy_t *addr_policy_get_canonical_entry(addr_policy_t *ent);
  3051. int cmp_addr_policies(smartlist_t *a, smartlist_t *b);
  3052. addr_policy_result_t compare_addr_to_addr_policy(uint32_t addr,
  3053. uint16_t port, smartlist_t *policy);
  3054. int policies_parse_exit_policy(config_line_t *cfg, smartlist_t **dest,
  3055. int rejectprivate, const char *local_address);
  3056. void policies_set_router_exitpolicy_to_reject_all(routerinfo_t *exitrouter);
  3057. int exit_policy_is_general_exit(smartlist_t *policy);
  3058. int policy_is_reject_star(smartlist_t *policy);
  3059. int getinfo_helper_policies(control_connection_t *conn,
  3060. const char *question, char **answer);
  3061. int policy_write_item(char *buf, size_t buflen, addr_policy_t *item);
  3062. void addr_policy_list_free(smartlist_t *p);
  3063. void addr_policy_free(addr_policy_t *p);
  3064. void policies_free_all(void);
  3065. /********************************* relay.c ***************************/
  3066. extern uint64_t stats_n_relay_cells_relayed;
  3067. extern uint64_t stats_n_relay_cells_delivered;
  3068. int circuit_receive_relay_cell(cell_t *cell, circuit_t *circ,
  3069. int cell_direction);
  3070. void relay_header_pack(char *dest, const relay_header_t *src);
  3071. void relay_header_unpack(relay_header_t *dest, const char *src);
  3072. int relay_send_command_from_edge(uint16_t stream_id, circuit_t *circ,
  3073. int relay_command, const char *payload,
  3074. size_t payload_len, crypt_path_t *cpath_layer);
  3075. int connection_edge_send_command(edge_connection_t *fromconn,
  3076. int relay_command, const char *payload,
  3077. size_t payload_len);
  3078. int connection_edge_package_raw_inbuf(edge_connection_t *conn,
  3079. int package_partial);
  3080. void connection_edge_consider_sending_sendme(edge_connection_t *conn);
  3081. socks5_reply_status_t connection_edge_end_reason_socks5_response(int reason);
  3082. int errno_to_end_reason(int e);
  3083. extern uint64_t stats_n_data_cells_packaged;
  3084. extern uint64_t stats_n_data_bytes_packaged;
  3085. extern uint64_t stats_n_data_cells_received;
  3086. extern uint64_t stats_n_data_bytes_received;
  3087. void init_cell_pool(void);
  3088. void free_cell_pool(void);
  3089. void clean_cell_pool(void);
  3090. void dump_cell_pool_usage(int severity);
  3091. void cell_queue_clear(cell_queue_t *queue);
  3092. void cell_queue_append(cell_queue_t *queue, packed_cell_t *cell);
  3093. void cell_queue_append_packed_copy(cell_queue_t *queue, const cell_t *cell);
  3094. void append_cell_to_circuit_queue(circuit_t *circ, or_connection_t *orconn,
  3095. cell_t *cell, int direction);
  3096. void connection_or_unlink_all_active_circs(or_connection_t *conn);
  3097. int connection_or_flush_from_first_active_circuit(or_connection_t *conn,
  3098. int max);
  3099. void assert_active_circuits_ok(or_connection_t *orconn);
  3100. void make_circuit_inactive_on_conn(circuit_t *circ, or_connection_t *conn);
  3101. void make_circuit_active_on_conn(circuit_t *circ, or_connection_t *conn);
  3102. /********************************* rephist.c ***************************/
  3103. void rep_hist_init(void);
  3104. void rep_hist_note_connect_failed(const char* nickname, time_t when);
  3105. void rep_hist_note_connect_succeeded(const char* nickname, time_t when);
  3106. void rep_hist_note_disconnect(const char* nickname, time_t when);
  3107. void rep_hist_note_connection_died(const char* nickname, time_t when);
  3108. void rep_hist_note_extend_succeeded(const char *from_name,
  3109. const char *to_name);
  3110. void rep_hist_note_extend_failed(const char *from_name, const char *to_name);
  3111. void rep_hist_dump_stats(time_t now, int severity);
  3112. void rep_hist_note_bytes_read(int num_bytes, time_t when);
  3113. void rep_hist_note_bytes_written(int num_bytes, time_t when);
  3114. int rep_hist_bandwidth_assess(void);
  3115. char *rep_hist_get_bandwidth_lines(int for_extrainfo);
  3116. void rep_hist_update_state(or_state_t *state);
  3117. int rep_hist_load_state(or_state_t *state, char **err);
  3118. void rep_history_clean(time_t before);
  3119. void rep_hist_note_router_reachable(const char *id, time_t when);
  3120. void rep_hist_note_router_unreachable(const char *id, time_t when);
  3121. int rep_hist_record_mtbf_data(void);
  3122. int rep_hist_load_mtbf_data(time_t now);
  3123. time_t rep_hist_downrate_old_runs(time_t now);
  3124. double rep_hist_get_stability(const char *id, time_t when);
  3125. double rep_hist_get_weighted_fractional_uptime(const char *id, time_t when);
  3126. long rep_hist_get_weighted_time_known(const char *id, time_t when);
  3127. int rep_hist_have_measured_enough_stability(void);
  3128. void rep_hist_note_used_port(uint16_t port, time_t now);
  3129. smartlist_t *rep_hist_get_predicted_ports(time_t now);
  3130. void rep_hist_note_used_resolve(time_t now);
  3131. void rep_hist_note_used_internal(time_t now, int need_uptime,
  3132. int need_capacity);
  3133. int rep_hist_get_predicted_internal(time_t now, int *need_uptime,
  3134. int *need_capacity);
  3135. int any_predicted_circuits(time_t now);
  3136. int rep_hist_circbuilding_dormant(time_t now);
  3137. /** Possible public/private key operations in Tor: used to keep track of where
  3138. * we're spending our time. */
  3139. typedef enum {
  3140. SIGN_DIR, SIGN_RTR,
  3141. VERIFY_DIR, VERIFY_RTR,
  3142. ENC_ONIONSKIN, DEC_ONIONSKIN,
  3143. TLS_HANDSHAKE_C, TLS_HANDSHAKE_S,
  3144. REND_CLIENT, REND_MID, REND_SERVER,
  3145. } pk_op_t;
  3146. void note_crypto_pk_op(pk_op_t operation);
  3147. void dump_pk_ops(int severity);
  3148. void rep_hist_free_all(void);
  3149. /* for hidden service usage statistics */
  3150. void hs_usage_note_publish_total(const char *service_id, time_t now);
  3151. void hs_usage_note_publish_novel(const char *service_id, time_t now);
  3152. void hs_usage_note_fetch_total(const char *service_id, time_t now);
  3153. void hs_usage_note_fetch_successful(const char *service_id, time_t now);
  3154. void hs_usage_write_statistics_to_file(time_t now);
  3155. void hs_usage_free_all(void);
  3156. /********************************* rendclient.c ***************************/
  3157. void rend_client_introcirc_has_opened(origin_circuit_t *circ);
  3158. void rend_client_rendcirc_has_opened(origin_circuit_t *circ);
  3159. int rend_client_introduction_acked(origin_circuit_t *circ, const char *request,
  3160. size_t request_len);
  3161. void rend_client_refetch_renddesc(const char *query);
  3162. void rend_client_refetch_v2_renddesc(const char *query);
  3163. int rend_client_remove_intro_point(extend_info_t *failed_intro,
  3164. const char *query);
  3165. int rend_client_rendezvous_acked(origin_circuit_t *circ, const char *request,
  3166. size_t request_len);
  3167. int rend_client_receive_rendezvous(origin_circuit_t *circ, const char *request,
  3168. size_t request_len);
  3169. void rend_client_desc_here(const char *query);
  3170. extend_info_t *rend_client_get_random_intro(const char *query);
  3171. int rend_client_send_introduction(origin_circuit_t *introcirc,
  3172. origin_circuit_t *rendcirc);
  3173. /********************************* rendcommon.c ***************************/
  3174. /** ASCII-encoded v2 hidden service descriptor. */
  3175. typedef struct rend_encoded_v2_service_descriptor_t {
  3176. char desc_id[DIGEST_LEN]; /**< Descriptor ID. */
  3177. char *desc_str; /**< Descriptor string. */
  3178. } rend_encoded_v2_service_descriptor_t;
  3179. /** Introduction point information. */
  3180. typedef struct rend_intro_point_t {
  3181. extend_info_t *extend_info; /**< Extend info of this introduction point. */
  3182. crypto_pk_env_t *intro_key; /**< Introduction key that replaces the service
  3183. * key, if this descriptor is V2. */
  3184. } rend_intro_point_t;
  3185. /** Information used to connect to a hidden service. */
  3186. typedef struct rend_service_descriptor_t {
  3187. crypto_pk_env_t *pk; /**< This service's public key. */
  3188. int version; /**< Version of the descriptor format: 0 or 2. */
  3189. time_t timestamp; /**< Time when the descriptor was generated. */
  3190. uint16_t protocols; /**< Bitmask: which rendezvous protocols are supported?
  3191. * (We allow bits '0', '1', and '2' to be set.) */
  3192. /** List of the service's introduction points. Elements are removed if
  3193. * introduction attempts fail. */
  3194. smartlist_t *intro_nodes;
  3195. } rend_service_descriptor_t;
  3196. int rend_cmp_service_ids(const char *one, const char *two);
  3197. void rend_process_relay_cell(circuit_t *circ, int command, size_t length,
  3198. const char *payload);
  3199. void rend_service_descriptor_free(rend_service_descriptor_t *desc);
  3200. int rend_encode_service_descriptor(rend_service_descriptor_t *desc,
  3201. crypto_pk_env_t *key,
  3202. char **str_out,
  3203. size_t *len_out);
  3204. rend_service_descriptor_t *rend_parse_service_descriptor(const char *str,
  3205. size_t len);
  3206. int rend_get_service_id(crypto_pk_env_t *pk, char *out);
  3207. void rend_encoded_v2_service_descriptor_free(
  3208. rend_encoded_v2_service_descriptor_t *desc);
  3209. void rend_intro_point_free(rend_intro_point_t *intro);
  3210. /** A cached rendezvous descriptor. */
  3211. typedef struct rend_cache_entry_t {
  3212. size_t len; /**< Length of <b>desc</b> */
  3213. time_t received; /**< When was the descriptor received? */
  3214. char *desc; /**< Service descriptor */
  3215. rend_service_descriptor_t *parsed; /**< Parsed value of 'desc' */
  3216. } rend_cache_entry_t;
  3217. void rend_cache_init(void);
  3218. void rend_cache_clean(void);
  3219. void rend_cache_clean_v2_descs_as_dir(void);
  3220. void rend_cache_free_all(void);
  3221. int rend_valid_service_id(const char *query);
  3222. int rend_cache_lookup_desc(const char *query, int version, const char **desc,
  3223. size_t *desc_len);
  3224. int rend_cache_lookup_entry(const char *query, int version,
  3225. rend_cache_entry_t **entry_out);
  3226. int rend_cache_lookup_v2_desc_as_dir(const char *query, const char **desc);
  3227. int rend_cache_store(const char *desc, size_t desc_len, int published);
  3228. int rend_cache_store_v2_desc_as_client(const char *desc,
  3229. const char *descriptor_cookie);
  3230. int rend_cache_store_v2_desc_as_dir(const char *desc);
  3231. int rend_cache_size(void);
  3232. int rend_encode_v2_descriptors(smartlist_t *descs_out,
  3233. rend_service_descriptor_t *desc, time_t now,
  3234. const char *descriptor_cookie, uint8_t period);
  3235. int rend_compute_v2_desc_id(char *desc_id_out, const char *service_id,
  3236. const char *descriptor_cookie,
  3237. time_t now, uint8_t replica);
  3238. int rend_id_is_in_interval(const char *a, const char *b, const char *c);
  3239. void rend_get_descriptor_id_bytes(char *descriptor_id_out,
  3240. const char *service_id,
  3241. const char *secret_id_part);
  3242. /********************************* rendservice.c ***************************/
  3243. int num_rend_services(void);
  3244. int rend_config_services(or_options_t *options, int validate_only);
  3245. int rend_service_load_keys(void);
  3246. void rend_services_init(void);
  3247. void rend_services_introduce(void);
  3248. void rend_consider_services_upload(time_t now);
  3249. void rend_service_intro_has_opened(origin_circuit_t *circuit);
  3250. int rend_service_intro_established(origin_circuit_t *circuit,
  3251. const char *request,
  3252. size_t request_len);
  3253. void rend_service_rendezvous_has_opened(origin_circuit_t *circuit);
  3254. int rend_service_introduce(origin_circuit_t *circuit, const char *request,
  3255. size_t request_len);
  3256. void rend_service_relaunch_rendezvous(origin_circuit_t *oldcirc);
  3257. int rend_service_set_connection_addr_port(edge_connection_t *conn,
  3258. origin_circuit_t *circ);
  3259. void rend_service_dump_stats(int severity);
  3260. void rend_service_free_all(void);
  3261. /********************************* rendmid.c *******************************/
  3262. int rend_mid_establish_intro(or_circuit_t *circ, const char *request,
  3263. size_t request_len);
  3264. int rend_mid_introduce(or_circuit_t *circ, const char *request,
  3265. size_t request_len);
  3266. int rend_mid_establish_rendezvous(or_circuit_t *circ, const char *request,
  3267. size_t request_len);
  3268. int rend_mid_rendezvous(or_circuit_t *circ, const char *request,
  3269. size_t request_len);
  3270. /********************************* router.c ***************************/
  3271. crypto_pk_env_t *get_onion_key(void);
  3272. time_t get_onion_key_set_at(void);
  3273. void set_identity_key(crypto_pk_env_t *k);
  3274. crypto_pk_env_t *get_identity_key(void);
  3275. int identity_key_is_set(void);
  3276. authority_cert_t *get_my_v3_authority_cert(void);
  3277. crypto_pk_env_t *get_my_v3_authority_signing_key(void);
  3278. void dup_onion_keys(crypto_pk_env_t **key, crypto_pk_env_t **last);
  3279. void rotate_onion_key(void);
  3280. crypto_pk_env_t *init_key_from_file(const char *fname, int generate,
  3281. int severity);
  3282. void v3_authority_check_key_expiry(void);
  3283. int init_keys(void);
  3284. int check_whether_orport_reachable(void);
  3285. int check_whether_dirport_reachable(void);
  3286. void consider_testing_reachability(int test_or, int test_dir);
  3287. void router_orport_found_reachable(void);
  3288. void router_dirport_found_reachable(void);
  3289. void router_perform_bandwidth_test(int num_circs, time_t now);
  3290. int authdir_mode(or_options_t *options);
  3291. int authdir_mode_v1(or_options_t *options);
  3292. int authdir_mode_v2(or_options_t *options);
  3293. int authdir_mode_v3(or_options_t *options);
  3294. int authdir_mode_any_main(or_options_t *options);
  3295. int authdir_mode_any_nonhidserv(or_options_t *options);
  3296. int authdir_mode_handles_descs(or_options_t *options, int purpose);
  3297. int authdir_mode_publishes_statuses(or_options_t *options);
  3298. int authdir_mode_tests_reachability(or_options_t *options);
  3299. int authdir_mode_bridge(or_options_t *options);
  3300. int clique_mode(or_options_t *options);
  3301. int server_mode(or_options_t *options);
  3302. int advertised_server_mode(void);
  3303. int proxy_mode(or_options_t *options);
  3304. void consider_publishable_server(int force);
  3305. int router_is_clique_mode(routerinfo_t *router);
  3306. void router_upload_dir_desc_to_dirservers(int force);
  3307. void mark_my_descriptor_dirty_if_older_than(time_t when);
  3308. void mark_my_descriptor_dirty(void);
  3309. void check_descriptor_bandwidth_changed(time_t now);
  3310. void check_descriptor_ipaddress_changed(time_t now);
  3311. void router_new_address_suggestion(const char *suggestion);
  3312. int router_compare_to_my_exit_policy(edge_connection_t *conn);
  3313. routerinfo_t *router_get_my_routerinfo(void);
  3314. extrainfo_t *router_get_my_extrainfo(void);
  3315. const char *router_get_my_descriptor(void);
  3316. int router_digest_is_me(const char *digest);
  3317. int router_is_me(routerinfo_t *router);
  3318. int router_fingerprint_is_me(const char *fp);
  3319. int router_pick_published_address(or_options_t *options, uint32_t *addr);
  3320. int router_rebuild_descriptor(int force);
  3321. int router_dump_router_to_string(char *s, size_t maxlen, routerinfo_t *router,
  3322. crypto_pk_env_t *ident_key);
  3323. int extrainfo_dump_to_string(char *s, size_t maxlen, extrainfo_t *extrainfo,
  3324. crypto_pk_env_t *ident_key);
  3325. int is_legal_nickname(const char *s);
  3326. int is_legal_nickname_or_hexdigest(const char *s);
  3327. int is_legal_hexdigest(const char *s);
  3328. void router_get_verbose_nickname(char *buf, routerinfo_t *router);
  3329. void router_reset_warnings(void);
  3330. void router_reset_reachability(void);
  3331. void router_free_all(void);
  3332. const char *router_purpose_to_string(uint8_t p);
  3333. uint8_t router_purpose_from_string(const char *s);
  3334. #ifdef ROUTER_PRIVATE
  3335. /* Used only by router.c and test.c */
  3336. void get_platform_str(char *platform, size_t len);
  3337. #endif
  3338. /********************************* routerlist.c ***************************/
  3339. /** Represents information about a single trusted directory server. */
  3340. typedef struct trusted_dir_server_t {
  3341. char *description;
  3342. char *nickname;
  3343. char *address; /**< Hostname. */
  3344. uint32_t addr; /**< IPv4 address. */
  3345. uint16_t dir_port; /**< Directory port. */
  3346. uint16_t or_port; /**< OR port: Used for tunneling connections. */
  3347. char digest[DIGEST_LEN]; /**< Digest of identity key. */
  3348. char v3_identity_digest[DIGEST_LEN]; /**< Digest of v3 (authority only,
  3349. * high-security) identity key. */
  3350. unsigned int is_running:1; /**< True iff we think this server is running. */
  3351. /** True iff this server has accepted the most recent server descriptor
  3352. * we tried to upload to it. */
  3353. unsigned int has_accepted_serverdesc:1;
  3354. /** What kind of authority is this? (Bitfield.) */
  3355. authority_type_t type;
  3356. download_status_t v2_ns_dl_status; /**< Status of downloading this server's
  3357. * v2 network status. */
  3358. time_t addr_current_at; /**< When was the document that we derived the
  3359. * address information from published? */
  3360. routerstatus_t fake_status; /**< Used when we need to pass this trusted
  3361. * dir_server_t to directory_initiate_command_*
  3362. * as a routerstatus_t. Not updated by the
  3363. * router-status management code!
  3364. **/
  3365. } trusted_dir_server_t;
  3366. #define ROUTER_REQUIRED_MIN_BANDWIDTH 10000
  3367. #define ROUTER_MAX_DECLARED_BANDWIDTH INT32_MAX
  3368. int get_n_authorities(authority_type_t type);
  3369. int trusted_dirs_reload_certs(void);
  3370. int trusted_dirs_load_certs_from_string(const char *contents, int from_store);
  3371. void trusted_dirs_flush_certs_to_disk(void);
  3372. authority_cert_t *authority_cert_get_newest_by_id(const char *id_digest);
  3373. authority_cert_t *authority_cert_get_by_sk_digest(const char *sk_digest);
  3374. authority_cert_t *authority_cert_get_by_digests(const char *id_digest,
  3375. const char *sk_digest);
  3376. void authority_cert_get_all(smartlist_t *certs_out);
  3377. void authority_cert_dl_failed(const char *id_digest, int status);
  3378. void authority_certs_fetch_missing(networkstatus_t *status, time_t now);
  3379. int router_reload_router_list(void);
  3380. smartlist_t *router_get_trusted_dir_servers(void);
  3381. /* Flags for pick_directory_server and pick_trusteddirserver. */
  3382. #define PDS_ALLOW_SELF (1<<0)
  3383. #define PDS_RETRY_IF_NO_SERVERS (1<<1)
  3384. #define PDS_IGNORE_FASCISTFIREWALL (1<<2)
  3385. #define _PDS_PREFER_TUNNELED_DIR_CONNS (1<<16)
  3386. routerstatus_t *router_pick_directory_server(authority_type_t type, int flags);
  3387. trusted_dir_server_t *router_get_trusteddirserver_by_digest(const char *d);
  3388. trusted_dir_server_t *trusteddirserver_get_by_v3_auth_digest(const char *d);
  3389. routerstatus_t *router_pick_trusteddirserver(authority_type_t type, int flags);
  3390. void router_reset_status_download_failures(void);
  3391. void routerlist_add_family(smartlist_t *sl, routerinfo_t *router);
  3392. int routers_in_same_family(routerinfo_t *r1, routerinfo_t *r2);
  3393. void add_nickname_list_to_smartlist(smartlist_t *sl, const char *list,
  3394. int must_be_running);
  3395. int router_nickname_is_in_list(routerinfo_t *router, const char *list);
  3396. routerinfo_t *routerlist_find_my_routerinfo(void);
  3397. routerinfo_t *router_find_exact_exit_enclave(const char *address,
  3398. uint16_t port);
  3399. int router_is_unreliable(routerinfo_t *router, int need_uptime,
  3400. int need_capacity, int need_guard);
  3401. uint32_t router_get_advertised_bandwidth(routerinfo_t *router);
  3402. typedef enum {
  3403. NO_WEIGHTING, WEIGHT_FOR_EXIT, WEIGHT_FOR_GUARD
  3404. } bandwidth_weight_rule_t;
  3405. routerinfo_t *routerlist_sl_choose_by_bandwidth(smartlist_t *sl,
  3406. bandwidth_weight_rule_t rule);
  3407. routerstatus_t *routerstatus_sl_choose_by_bandwidth(smartlist_t *sl);
  3408. routerinfo_t *router_choose_random_node(const char *preferred,
  3409. const char *excluded,
  3410. smartlist_t *excludedsmartlist,
  3411. int need_uptime, int need_capacity,
  3412. int need_guard,
  3413. int allow_invalid, int strict,
  3414. int weight_for_exit);
  3415. routerinfo_t *router_get_by_nickname(const char *nickname,
  3416. int warn_if_unnamed);
  3417. int router_digest_version_as_new_as(const char *digest, const char *cutoff);
  3418. int router_digest_is_trusted_dir_type(const char *digest,
  3419. authority_type_t type);
  3420. #define router_digest_is_trusted_dir(d) \
  3421. router_digest_is_trusted_dir_type((d), NO_AUTHORITY)
  3422. int router_addr_is_trusted_dir(uint32_t addr);
  3423. int hexdigest_to_digest(const char *hexdigest, char *digest);
  3424. routerinfo_t *router_get_by_hexdigest(const char *hexdigest);
  3425. routerinfo_t *router_get_by_digest(const char *digest);
  3426. signed_descriptor_t *router_get_by_descriptor_digest(const char *digest);
  3427. signed_descriptor_t *router_get_by_extrainfo_digest(const char *digest);
  3428. signed_descriptor_t *extrainfo_get_by_descriptor_digest(const char *digest);
  3429. const char *signed_descriptor_get_body(signed_descriptor_t *desc);
  3430. const char *signed_descriptor_get_annotations(signed_descriptor_t *desc);
  3431. routerlist_t *router_get_routerlist(void);
  3432. void routerinfo_free(routerinfo_t *router);
  3433. void extrainfo_free(extrainfo_t *extrainfo);
  3434. void routerlist_free(routerlist_t *rl);
  3435. void dump_routerlist_mem_usage(int severity);
  3436. void routerlist_remove(routerlist_t *rl, routerinfo_t *ri, int make_old);
  3437. void routerlist_free_all(void);
  3438. void routerlist_reset_warnings(void);
  3439. void router_set_status(const char *digest, int up);
  3440. int router_add_to_routerlist(routerinfo_t *router, const char **msg,
  3441. int from_cache, int from_fetch);
  3442. int router_add_extrainfo_to_routerlist(extrainfo_t *ei, const char **msg,
  3443. int from_cache, int from_fetch);
  3444. void routerlist_remove_old_routers(void);
  3445. int router_load_single_router(const char *s, uint8_t purpose, int cache,
  3446. const char **msg);
  3447. void router_load_routers_from_string(const char *s, const char *eos,
  3448. saved_location_t saved_location,
  3449. smartlist_t *requested_fingerprints,
  3450. int descriptor_digests,
  3451. const char *prepend_annotations);
  3452. void router_load_extrainfo_from_string(const char *s, const char *eos,
  3453. saved_location_t saved_location,
  3454. smartlist_t *requested_fingerprints,
  3455. int descriptor_digests);
  3456. void routerlist_retry_directory_downloads(time_t now);
  3457. int router_exit_policy_all_routers_reject(uint32_t addr, uint16_t port,
  3458. int need_uptime);
  3459. int router_exit_policy_rejects_all(routerinfo_t *router);
  3460. trusted_dir_server_t *add_trusted_dir_server(const char *nickname,
  3461. const char *address,
  3462. uint16_t dir_port, uint16_t or_port,
  3463. const char *digest, const char *v3_auth_digest,
  3464. authority_type_t type);
  3465. void authority_cert_free(authority_cert_t *cert);
  3466. void clear_trusted_dir_servers(void);
  3467. int any_trusted_dir_is_v1_authority(void);
  3468. void update_router_descriptor_downloads(time_t now);
  3469. void update_extrainfo_downloads(time_t now);
  3470. int router_have_minimum_dir_info(void);
  3471. void router_dir_info_changed(void);
  3472. const char *get_dir_info_status_string(void);
  3473. void router_reset_descriptor_download_failures(void);
  3474. int router_differences_are_cosmetic(routerinfo_t *r1, routerinfo_t *r2);
  3475. int routerinfo_incompatible_with_extrainfo(routerinfo_t *ri, extrainfo_t *ei,
  3476. signed_descriptor_t *sd,
  3477. const char **msg);
  3478. void routerlist_assert_ok(routerlist_t *rl);
  3479. const char *esc_router_info(routerinfo_t *router);
  3480. void routers_sort_by_identity(smartlist_t *routers);
  3481. int hid_serv_get_responsible_directories(smartlist_t *responsible_dirs,
  3482. const char *id);
  3483. int hid_serv_acting_as_directory(void);
  3484. int hid_serv_responsible_for_desc_id(const char *id);
  3485. /********************************* routerparse.c ************************/
  3486. #define MAX_STATUS_TAG_LEN 32
  3487. /** Structure to hold parsed Tor versions. This is a little messier
  3488. * than we would like it to be, because we changed version schemes with 0.1.0.
  3489. *
  3490. * See version-spec.txt for the whole business.
  3491. */
  3492. typedef struct tor_version_t {
  3493. int major;
  3494. int minor;
  3495. int micro;
  3496. /** Release status. For version in the post-0.1 format, this is always
  3497. * VER_RELEASE. */
  3498. enum { VER_PRE=0, VER_RC=1, VER_RELEASE=2, } status;
  3499. int patchlevel;
  3500. char status_tag[MAX_STATUS_TAG_LEN];
  3501. int svn_revision;
  3502. } tor_version_t;
  3503. int router_get_router_hash(const char *s, char *digest);
  3504. int router_get_dir_hash(const char *s, char *digest);
  3505. int router_get_runningrouters_hash(const char *s, char *digest);
  3506. int router_get_networkstatus_v2_hash(const char *s, char *digest);
  3507. int router_get_networkstatus_v3_hash(const char *s, char *digest);
  3508. int router_get_extrainfo_hash(const char *s, char *digest);
  3509. int router_append_dirobj_signature(char *buf, size_t buf_len,
  3510. const char *digest,
  3511. crypto_pk_env_t *private_key);
  3512. int router_parse_list_from_string(const char **s, const char *eos,
  3513. smartlist_t *dest,
  3514. saved_location_t saved_location,
  3515. int is_extrainfo,
  3516. int allow_annotations,
  3517. const char *prepend_annotations);
  3518. int router_parse_routerlist_from_directory(const char *s,
  3519. routerlist_t **dest,
  3520. crypto_pk_env_t *pkey,
  3521. int check_version,
  3522. int write_to_cache);
  3523. int router_parse_runningrouters(const char *str);
  3524. int router_parse_directory(const char *str);
  3525. routerinfo_t *router_parse_entry_from_string(const char *s, const char *end,
  3526. int cache_copy,
  3527. int allow_annotations,
  3528. const char *prepend_annotations);
  3529. extrainfo_t *extrainfo_parse_entry_from_string(const char *s, const char *end,
  3530. int cache_copy, struct digest_ri_map_t *routermap);
  3531. addr_policy_t *router_parse_addr_policy_item_from_string(const char *s,
  3532. int assume_action);
  3533. version_status_t tor_version_is_obsolete(const char *myversion,
  3534. const char *versionlist);
  3535. int tor_version_parse(const char *s, tor_version_t *out);
  3536. int tor_version_as_new_as(const char *platform, const char *cutoff);
  3537. int tor_version_compare(tor_version_t *a, tor_version_t *b);
  3538. void sort_version_list(smartlist_t *lst, int remove_duplicates);
  3539. void assert_addr_policy_ok(smartlist_t *t);
  3540. void dump_distinct_digest_count(int severity);
  3541. networkstatus_v2_t *networkstatus_v2_parse_from_string(const char *s);
  3542. networkstatus_t *networkstatus_parse_vote_from_string(const char *s,
  3543. const char **eos_out,
  3544. int is_vote);
  3545. ns_detached_signatures_t *networkstatus_parse_detached_signatures(
  3546. const char *s, const char *eos);
  3547. authority_cert_t *authority_cert_parse_from_string(const char *s,
  3548. const char **end_of_string);
  3549. int rend_parse_v2_service_descriptor(rend_service_descriptor_t **parsed_out,
  3550. char *desc_id_out,
  3551. char **intro_points_encrypted_out,
  3552. size_t *intro_points_encrypted_size_out,
  3553. size_t *encoded_size_out,
  3554. const char **next_out, const char *desc);
  3555. int rend_decrypt_introduction_points(rend_service_descriptor_t *parsed,
  3556. const char *descriptor_cookie,
  3557. const char *intro_content,
  3558. size_t intro_size);
  3559. #endif