or.h 149 KB

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