or.h 162 KB

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