or.h 142 KB

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