or.h 118 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2018, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file or.h
  8. * \brief Master header file for Tor-specific functionality.
  9. **/
  10. #ifndef TOR_OR_H
  11. #define TOR_OR_H
  12. #include "orconfig.h"
  13. #ifdef HAVE_UNISTD_H
  14. #include <unistd.h>
  15. #endif
  16. #ifdef HAVE_SIGNAL_H
  17. #include <signal.h>
  18. #endif
  19. #ifdef HAVE_NETDB_H
  20. #include <netdb.h>
  21. #endif
  22. #ifdef HAVE_SYS_PARAM_H
  23. #include <sys/param.h> /* FreeBSD needs this to know what version it is */
  24. #endif
  25. #include "lib/cc/torint.h"
  26. #ifdef HAVE_SYS_FCNTL_H
  27. #include <sys/fcntl.h>
  28. #endif
  29. #ifdef HAVE_FCNTL_H
  30. #include <fcntl.h>
  31. #endif
  32. #ifdef HAVE_SYS_IOCTL_H
  33. #include <sys/ioctl.h>
  34. #endif
  35. #ifdef HAVE_SYS_UN_H
  36. #include <sys/un.h>
  37. #endif
  38. #ifdef HAVE_SYS_STAT_H
  39. #include <sys/stat.h>
  40. #endif
  41. #ifdef HAVE_NETINET_IN_H
  42. #include <netinet/in.h>
  43. #endif
  44. #ifdef HAVE_ARPA_INET_H
  45. #include <arpa/inet.h>
  46. #endif
  47. #ifdef HAVE_ERRNO_H
  48. #include <errno.h>
  49. #endif
  50. #ifdef HAVE_TIME_H
  51. #include <time.h>
  52. #endif
  53. #ifdef _WIN32
  54. #include <winsock2.h>
  55. #include <io.h>
  56. #include <process.h>
  57. #include <direct.h>
  58. #include <windows.h>
  59. #endif /* defined(_WIN32) */
  60. #include "common/util.h"
  61. #include "lib/container/map.h"
  62. #include "lib/container/smartlist.h"
  63. #include "lib/crypt_ops/crypto.h"
  64. #include "lib/defs/dh_sizes.h"
  65. #include "lib/encoding/binascii.h"
  66. #include "lib/net/address.h"
  67. #include "ht.h"
  68. // These, more than other includes, are for keeping the other struct
  69. // definitions working. We should remove them when we minimize our includes.
  70. #include "or/entry_port_cfg_st.h"
  71. struct ed25519_public_key_t;
  72. struct curve25519_public_key_t;
  73. /* These signals are defined to help handle_control_signal work.
  74. */
  75. #ifndef SIGHUP
  76. #define SIGHUP 1
  77. #endif
  78. #ifndef SIGINT
  79. #define SIGINT 2
  80. #endif
  81. #ifndef SIGUSR1
  82. #define SIGUSR1 10
  83. #endif
  84. #ifndef SIGUSR2
  85. #define SIGUSR2 12
  86. #endif
  87. #ifndef SIGTERM
  88. #define SIGTERM 15
  89. #endif
  90. /* Controller signals start at a high number so we don't
  91. * conflict with system-defined signals. */
  92. #define SIGNEWNYM 129
  93. #define SIGCLEARDNSCACHE 130
  94. #define SIGHEARTBEAT 131
  95. #if (SIZEOF_CELL_T != 0)
  96. /* On Irix, stdlib.h defines a cell_t type, so we need to make sure
  97. * that our stuff always calls cell_t something different. */
  98. #define cell_t tor_cell_t
  99. #endif
  100. #ifdef ENABLE_TOR2WEB_MODE
  101. #define NON_ANONYMOUS_MODE_ENABLED 1
  102. #endif
  103. /** Helper macro: Given a pointer to to.base_, of type from*, return &to. */
  104. #define DOWNCAST(to, ptr) ((to*)SUBTYPE_P(ptr, to, base_))
  105. /** Length of longest allowable configured nickname. */
  106. #define MAX_NICKNAME_LEN 19
  107. /** Length of a router identity encoded as a hexadecimal digest, plus
  108. * possible dollar sign. */
  109. #define MAX_HEX_NICKNAME_LEN (HEX_DIGEST_LEN+1)
  110. /** Maximum length of verbose router identifier: dollar sign, hex ID digest,
  111. * equal sign or tilde, nickname. */
  112. #define MAX_VERBOSE_NICKNAME_LEN (1+HEX_DIGEST_LEN+1+MAX_NICKNAME_LEN)
  113. /** Maximum size, in bytes, for resized buffers. */
  114. #define MAX_BUF_SIZE ((1<<24)-1) /* 16MB-1 */
  115. /** Maximum size, in bytes, for any directory object that we've downloaded. */
  116. #define MAX_DIR_DL_SIZE MAX_BUF_SIZE
  117. /** For HTTP parsing: Maximum number of bytes we'll accept in the headers
  118. * of an HTTP request or response. */
  119. #define MAX_HEADERS_SIZE 50000
  120. /** Maximum size, in bytes, for any directory object that we're accepting
  121. * as an upload. */
  122. #define MAX_DIR_UL_SIZE MAX_BUF_SIZE
  123. /** Maximum size, in bytes, of a single router descriptor uploaded to us
  124. * as a directory authority. Caches and clients fetch whatever descriptors
  125. * the authorities tell them to fetch, and don't care about size. */
  126. #define MAX_DESCRIPTOR_UPLOAD_SIZE 20000
  127. /** Maximum size of a single extrainfo document, as above. */
  128. #define MAX_EXTRAINFO_UPLOAD_SIZE 50000
  129. /** Minimum lifetime for an onion key in days. */
  130. #define MIN_ONION_KEY_LIFETIME_DAYS (1)
  131. /** Maximum lifetime for an onion key in days. */
  132. #define MAX_ONION_KEY_LIFETIME_DAYS (90)
  133. /** Default lifetime for an onion key in days. */
  134. #define DEFAULT_ONION_KEY_LIFETIME_DAYS (28)
  135. /** Minimum grace period for acceptance of an onion key in days.
  136. * The maximum value is defined in proposal #274 as being the current network
  137. * consensus parameter for "onion-key-rotation-days". */
  138. #define MIN_ONION_KEY_GRACE_PERIOD_DAYS (1)
  139. /** Default grace period for acceptance of an onion key in days. */
  140. #define DEFAULT_ONION_KEY_GRACE_PERIOD_DAYS (7)
  141. /** How often we should check the network consensus if it is time to rotate or
  142. * expire onion keys. */
  143. #define ONION_KEY_CONSENSUS_CHECK_INTERVAL (60*60)
  144. /** How often do we rotate TLS contexts? */
  145. #define MAX_SSL_KEY_LIFETIME_INTERNAL (2*60*60)
  146. /** How old do we allow a router to get before removing it
  147. * from the router list? In seconds. */
  148. #define ROUTER_MAX_AGE (60*60*48)
  149. /** How old can a router get before we (as a server) will no longer
  150. * consider it live? In seconds. */
  151. #define ROUTER_MAX_AGE_TO_PUBLISH (60*60*24)
  152. /** How old do we let a saved descriptor get before force-removing it? */
  153. #define OLD_ROUTER_DESC_MAX_AGE (60*60*24*5)
  154. #define CONN_TYPE_MIN_ 3
  155. /** Type for sockets listening for OR connections. */
  156. #define CONN_TYPE_OR_LISTENER 3
  157. /** A bidirectional TLS connection transmitting a sequence of cells.
  158. * May be from an OR to an OR, or from an OP to an OR. */
  159. #define CONN_TYPE_OR 4
  160. /** A TCP connection from an onion router to a stream's destination. */
  161. #define CONN_TYPE_EXIT 5
  162. /** Type for sockets listening for SOCKS connections. */
  163. #define CONN_TYPE_AP_LISTENER 6
  164. /** A SOCKS proxy connection from the user application to the onion
  165. * proxy. */
  166. #define CONN_TYPE_AP 7
  167. /** Type for sockets listening for HTTP connections to the directory server. */
  168. #define CONN_TYPE_DIR_LISTENER 8
  169. /** Type for HTTP connections to the directory server. */
  170. #define CONN_TYPE_DIR 9
  171. /* Type 10 is unused. */
  172. /** Type for listening for connections from user interface process. */
  173. #define CONN_TYPE_CONTROL_LISTENER 11
  174. /** Type for connections from user interface process. */
  175. #define CONN_TYPE_CONTROL 12
  176. /** Type for sockets listening for transparent connections redirected by pf or
  177. * netfilter. */
  178. #define CONN_TYPE_AP_TRANS_LISTENER 13
  179. /** Type for sockets listening for transparent connections redirected by
  180. * natd. */
  181. #define CONN_TYPE_AP_NATD_LISTENER 14
  182. /** Type for sockets listening for DNS requests. */
  183. #define CONN_TYPE_AP_DNS_LISTENER 15
  184. /** Type for connections from the Extended ORPort. */
  185. #define CONN_TYPE_EXT_OR 16
  186. /** Type for sockets listening for Extended ORPort connections. */
  187. #define CONN_TYPE_EXT_OR_LISTENER 17
  188. /** Type for sockets listening for HTTP CONNECT tunnel connections. */
  189. #define CONN_TYPE_AP_HTTP_CONNECT_LISTENER 18
  190. #define CONN_TYPE_MAX_ 19
  191. /* !!!! If _CONN_TYPE_MAX is ever over 31, we must grow the type field in
  192. * connection_t. */
  193. /* Proxy client types */
  194. #define PROXY_NONE 0
  195. #define PROXY_CONNECT 1
  196. #define PROXY_SOCKS4 2
  197. #define PROXY_SOCKS5 3
  198. /* !!!! If there is ever a PROXY_* type over 3, we must grow the proxy_type
  199. * field in or_connection_t */
  200. /* Pluggable transport proxy type. Don't use this in or_connection_t,
  201. * instead use the actual underlying proxy type (see above). */
  202. #define PROXY_PLUGGABLE 4
  203. /* Proxy client handshake states */
  204. /* We use a proxy but we haven't even connected to it yet. */
  205. #define PROXY_INFANT 1
  206. /* We use an HTTP proxy and we've sent the CONNECT command. */
  207. #define PROXY_HTTPS_WANT_CONNECT_OK 2
  208. /* We use a SOCKS4 proxy and we've sent the CONNECT command. */
  209. #define PROXY_SOCKS4_WANT_CONNECT_OK 3
  210. /* We use a SOCKS5 proxy and we try to negotiate without
  211. any authentication . */
  212. #define PROXY_SOCKS5_WANT_AUTH_METHOD_NONE 4
  213. /* We use a SOCKS5 proxy and we try to negotiate with
  214. Username/Password authentication . */
  215. #define PROXY_SOCKS5_WANT_AUTH_METHOD_RFC1929 5
  216. /* We use a SOCKS5 proxy and we just sent our credentials. */
  217. #define PROXY_SOCKS5_WANT_AUTH_RFC1929_OK 6
  218. /* We use a SOCKS5 proxy and we just sent our CONNECT command. */
  219. #define PROXY_SOCKS5_WANT_CONNECT_OK 7
  220. /* We use a proxy and we CONNECTed successfully!. */
  221. #define PROXY_CONNECTED 8
  222. /** True iff <b>x</b> is an edge connection. */
  223. #define CONN_IS_EDGE(x) \
  224. ((x)->type == CONN_TYPE_EXIT || (x)->type == CONN_TYPE_AP)
  225. /** State for any listener connection. */
  226. #define LISTENER_STATE_READY 0
  227. #define OR_CONN_STATE_MIN_ 1
  228. /** State for a connection to an OR: waiting for connect() to finish. */
  229. #define OR_CONN_STATE_CONNECTING 1
  230. /** State for a connection to an OR: waiting for proxy handshake to complete */
  231. #define OR_CONN_STATE_PROXY_HANDSHAKING 2
  232. /** State for an OR connection client: SSL is handshaking, not done
  233. * yet. */
  234. #define OR_CONN_STATE_TLS_HANDSHAKING 3
  235. /** State for a connection to an OR: We're doing a second SSL handshake for
  236. * renegotiation purposes. (V2 handshake only.) */
  237. #define OR_CONN_STATE_TLS_CLIENT_RENEGOTIATING 4
  238. /** State for a connection at an OR: We're waiting for the client to
  239. * renegotiate (to indicate a v2 handshake) or send a versions cell (to
  240. * indicate a v3 handshake) */
  241. #define OR_CONN_STATE_TLS_SERVER_RENEGOTIATING 5
  242. /** State for an OR connection: We're done with our SSL handshake, we've done
  243. * renegotiation, but we haven't yet negotiated link protocol versions and
  244. * sent a netinfo cell. */
  245. #define OR_CONN_STATE_OR_HANDSHAKING_V2 6
  246. /** State for an OR connection: We're done with our SSL handshake, but we
  247. * haven't yet negotiated link protocol versions, done a V3 handshake, and
  248. * sent a netinfo cell. */
  249. #define OR_CONN_STATE_OR_HANDSHAKING_V3 7
  250. /** State for an OR connection: Ready to send/receive cells. */
  251. #define OR_CONN_STATE_OPEN 8
  252. #define OR_CONN_STATE_MAX_ 8
  253. /** States of the Extended ORPort protocol. Be careful before changing
  254. * the numbers: they matter. */
  255. #define EXT_OR_CONN_STATE_MIN_ 1
  256. /** Extended ORPort authentication is waiting for the authentication
  257. * type selected by the client. */
  258. #define EXT_OR_CONN_STATE_AUTH_WAIT_AUTH_TYPE 1
  259. /** Extended ORPort authentication is waiting for the client nonce. */
  260. #define EXT_OR_CONN_STATE_AUTH_WAIT_CLIENT_NONCE 2
  261. /** Extended ORPort authentication is waiting for the client hash. */
  262. #define EXT_OR_CONN_STATE_AUTH_WAIT_CLIENT_HASH 3
  263. #define EXT_OR_CONN_STATE_AUTH_MAX 3
  264. /** Authentication finished and the Extended ORPort is now accepting
  265. * traffic. */
  266. #define EXT_OR_CONN_STATE_OPEN 4
  267. /** Extended ORPort is flushing its last messages and preparing to
  268. * start accepting OR connections. */
  269. #define EXT_OR_CONN_STATE_FLUSHING 5
  270. #define EXT_OR_CONN_STATE_MAX_ 5
  271. #define EXIT_CONN_STATE_MIN_ 1
  272. /** State for an exit connection: waiting for response from DNS farm. */
  273. #define EXIT_CONN_STATE_RESOLVING 1
  274. /** State for an exit connection: waiting for connect() to finish. */
  275. #define EXIT_CONN_STATE_CONNECTING 2
  276. /** State for an exit connection: open and ready to transmit data. */
  277. #define EXIT_CONN_STATE_OPEN 3
  278. /** State for an exit connection: waiting to be removed. */
  279. #define EXIT_CONN_STATE_RESOLVEFAILED 4
  280. #define EXIT_CONN_STATE_MAX_ 4
  281. /* The AP state values must be disjoint from the EXIT state values. */
  282. #define AP_CONN_STATE_MIN_ 5
  283. /** State for a SOCKS connection: waiting for SOCKS request. */
  284. #define AP_CONN_STATE_SOCKS_WAIT 5
  285. /** State for a SOCKS connection: got a y.onion URL; waiting to receive
  286. * rendezvous descriptor. */
  287. #define AP_CONN_STATE_RENDDESC_WAIT 6
  288. /** The controller will attach this connection to a circuit; it isn't our
  289. * job to do so. */
  290. #define AP_CONN_STATE_CONTROLLER_WAIT 7
  291. /** State for a SOCKS connection: waiting for a completed circuit. */
  292. #define AP_CONN_STATE_CIRCUIT_WAIT 8
  293. /** State for a SOCKS connection: sent BEGIN, waiting for CONNECTED. */
  294. #define AP_CONN_STATE_CONNECT_WAIT 9
  295. /** State for a SOCKS connection: sent RESOLVE, waiting for RESOLVED. */
  296. #define AP_CONN_STATE_RESOLVE_WAIT 10
  297. /** State for a SOCKS connection: ready to send and receive. */
  298. #define AP_CONN_STATE_OPEN 11
  299. /** State for a transparent natd connection: waiting for original
  300. * destination. */
  301. #define AP_CONN_STATE_NATD_WAIT 12
  302. /** State for an HTTP tunnel: waiting for an HTTP CONNECT command. */
  303. #define AP_CONN_STATE_HTTP_CONNECT_WAIT 13
  304. #define AP_CONN_STATE_MAX_ 13
  305. /** True iff the AP_CONN_STATE_* value <b>s</b> means that the corresponding
  306. * edge connection is not attached to any circuit. */
  307. #define AP_CONN_STATE_IS_UNATTACHED(s) \
  308. ((s) <= AP_CONN_STATE_CIRCUIT_WAIT || (s) == AP_CONN_STATE_NATD_WAIT)
  309. #define DIR_CONN_STATE_MIN_ 1
  310. /** State for connection to directory server: waiting for connect(). */
  311. #define DIR_CONN_STATE_CONNECTING 1
  312. /** State for connection to directory server: sending HTTP request. */
  313. #define DIR_CONN_STATE_CLIENT_SENDING 2
  314. /** State for connection to directory server: reading HTTP response. */
  315. #define DIR_CONN_STATE_CLIENT_READING 3
  316. /** State for connection to directory server: happy and finished. */
  317. #define DIR_CONN_STATE_CLIENT_FINISHED 4
  318. /** State for connection at directory server: waiting for HTTP request. */
  319. #define DIR_CONN_STATE_SERVER_COMMAND_WAIT 5
  320. /** State for connection at directory server: sending HTTP response. */
  321. #define DIR_CONN_STATE_SERVER_WRITING 6
  322. #define DIR_CONN_STATE_MAX_ 6
  323. /** True iff the purpose of <b>conn</b> means that it's a server-side
  324. * directory connection. */
  325. #define DIR_CONN_IS_SERVER(conn) ((conn)->purpose == DIR_PURPOSE_SERVER)
  326. #define CONTROL_CONN_STATE_MIN_ 1
  327. /** State for a control connection: Authenticated and accepting v1 commands. */
  328. #define CONTROL_CONN_STATE_OPEN 1
  329. /** State for a control connection: Waiting for authentication; speaking
  330. * protocol v1. */
  331. #define CONTROL_CONN_STATE_NEEDAUTH 2
  332. #define CONTROL_CONN_STATE_MAX_ 2
  333. #define DIR_PURPOSE_MIN_ 4
  334. /** A connection to a directory server: set after a v2 rendezvous
  335. * descriptor is downloaded. */
  336. #define DIR_PURPOSE_HAS_FETCHED_RENDDESC_V2 4
  337. /** A connection to a directory server: download one or more server
  338. * descriptors. */
  339. #define DIR_PURPOSE_FETCH_SERVERDESC 6
  340. /** A connection to a directory server: download one or more extra-info
  341. * documents. */
  342. #define DIR_PURPOSE_FETCH_EXTRAINFO 7
  343. /** A connection to a directory server: upload a server descriptor. */
  344. #define DIR_PURPOSE_UPLOAD_DIR 8
  345. /** A connection to a directory server: upload a v3 networkstatus vote. */
  346. #define DIR_PURPOSE_UPLOAD_VOTE 10
  347. /** A connection to a directory server: upload a v3 consensus signature */
  348. #define DIR_PURPOSE_UPLOAD_SIGNATURES 11
  349. /** A connection to a directory server: download one or more v3 networkstatus
  350. * votes. */
  351. #define DIR_PURPOSE_FETCH_STATUS_VOTE 12
  352. /** A connection to a directory server: download a v3 detached signatures
  353. * object for a consensus. */
  354. #define DIR_PURPOSE_FETCH_DETACHED_SIGNATURES 13
  355. /** A connection to a directory server: download a v3 networkstatus
  356. * consensus. */
  357. #define DIR_PURPOSE_FETCH_CONSENSUS 14
  358. /** A connection to a directory server: download one or more directory
  359. * authority certificates. */
  360. #define DIR_PURPOSE_FETCH_CERTIFICATE 15
  361. /** Purpose for connection at a directory server. */
  362. #define DIR_PURPOSE_SERVER 16
  363. /** A connection to a hidden service directory server: upload a v2 rendezvous
  364. * descriptor. */
  365. #define DIR_PURPOSE_UPLOAD_RENDDESC_V2 17
  366. /** A connection to a hidden service directory server: download a v2 rendezvous
  367. * descriptor. */
  368. #define DIR_PURPOSE_FETCH_RENDDESC_V2 18
  369. /** A connection to a directory server: download a microdescriptor. */
  370. #define DIR_PURPOSE_FETCH_MICRODESC 19
  371. /** A connection to a hidden service directory: upload a v3 descriptor. */
  372. #define DIR_PURPOSE_UPLOAD_HSDESC 20
  373. /** A connection to a hidden service directory: fetch a v3 descriptor. */
  374. #define DIR_PURPOSE_FETCH_HSDESC 21
  375. /** A connection to a directory server: set after a hidden service descriptor
  376. * is downloaded. */
  377. #define DIR_PURPOSE_HAS_FETCHED_HSDESC 22
  378. #define DIR_PURPOSE_MAX_ 22
  379. /** True iff <b>p</b> is a purpose corresponding to uploading
  380. * data to a directory server. */
  381. #define DIR_PURPOSE_IS_UPLOAD(p) \
  382. ((p)==DIR_PURPOSE_UPLOAD_DIR || \
  383. (p)==DIR_PURPOSE_UPLOAD_VOTE || \
  384. (p)==DIR_PURPOSE_UPLOAD_SIGNATURES || \
  385. (p)==DIR_PURPOSE_UPLOAD_RENDDESC_V2 || \
  386. (p)==DIR_PURPOSE_UPLOAD_HSDESC)
  387. #define EXIT_PURPOSE_MIN_ 1
  388. /** This exit stream wants to do an ordinary connect. */
  389. #define EXIT_PURPOSE_CONNECT 1
  390. /** This exit stream wants to do a resolve (either normal or reverse). */
  391. #define EXIT_PURPOSE_RESOLVE 2
  392. #define EXIT_PURPOSE_MAX_ 2
  393. /* !!!! If any connection purpose is ever over 31, we must grow the type
  394. * field in connection_t. */
  395. /** Circuit state: I'm the origin, still haven't done all my handshakes. */
  396. #define CIRCUIT_STATE_BUILDING 0
  397. /** Circuit state: Waiting to process the onionskin. */
  398. #define CIRCUIT_STATE_ONIONSKIN_PENDING 1
  399. /** Circuit state: I'd like to deliver a create, but my n_chan is still
  400. * connecting. */
  401. #define CIRCUIT_STATE_CHAN_WAIT 2
  402. /** Circuit state: the circuit is open but we don't want to actually use it
  403. * until we find out if a better guard will be available.
  404. */
  405. #define CIRCUIT_STATE_GUARD_WAIT 3
  406. /** Circuit state: onionskin(s) processed, ready to send/receive cells. */
  407. #define CIRCUIT_STATE_OPEN 4
  408. #define CIRCUIT_PURPOSE_MIN_ 1
  409. /* these circuits were initiated elsewhere */
  410. #define CIRCUIT_PURPOSE_OR_MIN_ 1
  411. /** OR-side circuit purpose: normal circuit, at OR. */
  412. #define CIRCUIT_PURPOSE_OR 1
  413. /** OR-side circuit purpose: At OR, from the service, waiting for intro from
  414. * clients. */
  415. #define CIRCUIT_PURPOSE_INTRO_POINT 2
  416. /** OR-side circuit purpose: At OR, from the client, waiting for the service.
  417. */
  418. #define CIRCUIT_PURPOSE_REND_POINT_WAITING 3
  419. /** OR-side circuit purpose: At OR, both circuits have this purpose. */
  420. #define CIRCUIT_PURPOSE_REND_ESTABLISHED 4
  421. #define CIRCUIT_PURPOSE_OR_MAX_ 4
  422. /* these circuits originate at this node */
  423. /* here's how circ client-side purposes work:
  424. * normal circuits are C_GENERAL.
  425. * circuits that are c_introducing are either on their way to
  426. * becoming open, or they are open and waiting for a
  427. * suitable rendcirc before they send the intro.
  428. * circuits that are c_introduce_ack_wait have sent the intro,
  429. * but haven't gotten a response yet.
  430. * circuits that are c_establish_rend are either on their way
  431. * to becoming open, or they are open and have sent the
  432. * establish_rendezvous cell but haven't received an ack.
  433. * circuits that are c_rend_ready are open and have received a
  434. * rend ack, but haven't heard from the service yet. if they have a
  435. * buildstate->pending_final_cpath then they're expecting a
  436. * cell from the service, else they're not.
  437. * circuits that are c_rend_ready_intro_acked are open, and
  438. * some intro circ has sent its intro and received an ack.
  439. * circuits that are c_rend_joined are open, have heard from
  440. * the service, and are talking to it.
  441. */
  442. /** Client-side circuit purpose: Normal circuit, with cpath. */
  443. #define CIRCUIT_PURPOSE_C_GENERAL 5
  444. #define CIRCUIT_PURPOSE_C_HS_MIN_ 6
  445. /** Client-side circuit purpose: at the client, connecting to intro point. */
  446. #define CIRCUIT_PURPOSE_C_INTRODUCING 6
  447. /** Client-side circuit purpose: at the client, sent INTRODUCE1 to intro point,
  448. * waiting for ACK/NAK. */
  449. #define CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT 7
  450. /** Client-side circuit purpose: at the client, introduced and acked, closing.
  451. */
  452. #define CIRCUIT_PURPOSE_C_INTRODUCE_ACKED 8
  453. /** Client-side circuit purpose: at the client, waiting for ack. */
  454. #define CIRCUIT_PURPOSE_C_ESTABLISH_REND 9
  455. /** Client-side circuit purpose: at the client, waiting for the service. */
  456. #define CIRCUIT_PURPOSE_C_REND_READY 10
  457. /** Client-side circuit purpose: at the client, waiting for the service,
  458. * INTRODUCE has been acknowledged. */
  459. #define CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED 11
  460. /** Client-side circuit purpose: at the client, rendezvous established. */
  461. #define CIRCUIT_PURPOSE_C_REND_JOINED 12
  462. /** This circuit is used for getting hsdirs */
  463. #define CIRCUIT_PURPOSE_C_HSDIR_GET 13
  464. #define CIRCUIT_PURPOSE_C_HS_MAX_ 13
  465. /** This circuit is used for build time measurement only */
  466. #define CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT 14
  467. #define CIRCUIT_PURPOSE_C_MAX_ 14
  468. #define CIRCUIT_PURPOSE_S_HS_MIN_ 15
  469. /** Hidden-service-side circuit purpose: at the service, waiting for
  470. * introductions. */
  471. #define CIRCUIT_PURPOSE_S_ESTABLISH_INTRO 15
  472. /** Hidden-service-side circuit purpose: at the service, successfully
  473. * established intro. */
  474. #define CIRCUIT_PURPOSE_S_INTRO 16
  475. /** Hidden-service-side circuit purpose: at the service, connecting to rend
  476. * point. */
  477. #define CIRCUIT_PURPOSE_S_CONNECT_REND 17
  478. /** Hidden-service-side circuit purpose: at the service, rendezvous
  479. * established. */
  480. #define CIRCUIT_PURPOSE_S_REND_JOINED 18
  481. /** This circuit is used for uploading hsdirs */
  482. #define CIRCUIT_PURPOSE_S_HSDIR_POST 19
  483. #define CIRCUIT_PURPOSE_S_HS_MAX_ 19
  484. /** A testing circuit; not meant to be used for actual traffic. */
  485. #define CIRCUIT_PURPOSE_TESTING 20
  486. /** A controller made this circuit and Tor should not use it. */
  487. #define CIRCUIT_PURPOSE_CONTROLLER 21
  488. /** This circuit is used for path bias probing only */
  489. #define CIRCUIT_PURPOSE_PATH_BIAS_TESTING 22
  490. /** This circuit is used for vanguards/restricted paths.
  491. *
  492. * This type of circuit is *only* created preemptively and never
  493. * on-demand. When an HS operation needs to take place (e.g. connect to an
  494. * intro point), these circuits are then cannibalized and repurposed to the
  495. * actual needed HS purpose. */
  496. #define CIRCUIT_PURPOSE_HS_VANGUARDS 23
  497. #define CIRCUIT_PURPOSE_MAX_ 23
  498. /** A catch-all for unrecognized purposes. Currently we don't expect
  499. * to make or see any circuits with this purpose. */
  500. #define CIRCUIT_PURPOSE_UNKNOWN 255
  501. /** True iff the circuit purpose <b>p</b> is for a circuit that
  502. * originated at this node. */
  503. #define CIRCUIT_PURPOSE_IS_ORIGIN(p) ((p)>CIRCUIT_PURPOSE_OR_MAX_)
  504. /** True iff the circuit purpose <b>p</b> is for a circuit that originated
  505. * here to serve as a client. (Hidden services don't count here.) */
  506. #define CIRCUIT_PURPOSE_IS_CLIENT(p) \
  507. ((p)> CIRCUIT_PURPOSE_OR_MAX_ && \
  508. (p)<=CIRCUIT_PURPOSE_C_MAX_)
  509. /** True iff the circuit_t <b>c</b> is actually an origin_circuit_t. */
  510. #define CIRCUIT_IS_ORIGIN(c) (CIRCUIT_PURPOSE_IS_ORIGIN((c)->purpose))
  511. /** True iff the circuit purpose <b>p</b> is for an established rendezvous
  512. * circuit. */
  513. #define CIRCUIT_PURPOSE_IS_ESTABLISHED_REND(p) \
  514. ((p) == CIRCUIT_PURPOSE_C_REND_JOINED || \
  515. (p) == CIRCUIT_PURPOSE_S_REND_JOINED)
  516. /** True iff the circuit_t c is actually an or_circuit_t */
  517. #define CIRCUIT_IS_ORCIRC(c) (((circuit_t *)(c))->magic == OR_CIRCUIT_MAGIC)
  518. /** True iff this circuit purpose should count towards the global
  519. * pending rate limit (set by MaxClientCircuitsPending). We count all
  520. * general purpose circuits, as well as the first step of client onion
  521. * service connections (HSDir gets). */
  522. #define CIRCUIT_PURPOSE_COUNTS_TOWARDS_MAXPENDING(p) \
  523. ((p) == CIRCUIT_PURPOSE_C_GENERAL || \
  524. (p) == CIRCUIT_PURPOSE_C_HSDIR_GET)
  525. /** How many circuits do we want simultaneously in-progress to handle
  526. * a given stream? */
  527. #define MIN_CIRCUITS_HANDLING_STREAM 2
  528. /* These RELAY_COMMAND constants define values for relay cell commands, and
  529. * must match those defined in tor-spec.txt. */
  530. #define RELAY_COMMAND_BEGIN 1
  531. #define RELAY_COMMAND_DATA 2
  532. #define RELAY_COMMAND_END 3
  533. #define RELAY_COMMAND_CONNECTED 4
  534. #define RELAY_COMMAND_SENDME 5
  535. #define RELAY_COMMAND_EXTEND 6
  536. #define RELAY_COMMAND_EXTENDED 7
  537. #define RELAY_COMMAND_TRUNCATE 8
  538. #define RELAY_COMMAND_TRUNCATED 9
  539. #define RELAY_COMMAND_DROP 10
  540. #define RELAY_COMMAND_RESOLVE 11
  541. #define RELAY_COMMAND_RESOLVED 12
  542. #define RELAY_COMMAND_BEGIN_DIR 13
  543. #define RELAY_COMMAND_EXTEND2 14
  544. #define RELAY_COMMAND_EXTENDED2 15
  545. #define RELAY_COMMAND_ESTABLISH_INTRO 32
  546. #define RELAY_COMMAND_ESTABLISH_RENDEZVOUS 33
  547. #define RELAY_COMMAND_INTRODUCE1 34
  548. #define RELAY_COMMAND_INTRODUCE2 35
  549. #define RELAY_COMMAND_RENDEZVOUS1 36
  550. #define RELAY_COMMAND_RENDEZVOUS2 37
  551. #define RELAY_COMMAND_INTRO_ESTABLISHED 38
  552. #define RELAY_COMMAND_RENDEZVOUS_ESTABLISHED 39
  553. #define RELAY_COMMAND_INTRODUCE_ACK 40
  554. /* Reasons why an OR connection is closed. */
  555. #define END_OR_CONN_REASON_DONE 1
  556. #define END_OR_CONN_REASON_REFUSED 2 /* connection refused */
  557. #define END_OR_CONN_REASON_OR_IDENTITY 3
  558. #define END_OR_CONN_REASON_CONNRESET 4 /* connection reset by peer */
  559. #define END_OR_CONN_REASON_TIMEOUT 5
  560. #define END_OR_CONN_REASON_NO_ROUTE 6 /* no route to host/net */
  561. #define END_OR_CONN_REASON_IO_ERROR 7 /* read/write error */
  562. #define END_OR_CONN_REASON_RESOURCE_LIMIT 8 /* sockets, buffers, etc */
  563. #define END_OR_CONN_REASON_PT_MISSING 9 /* PT failed or not available */
  564. #define END_OR_CONN_REASON_MISC 10
  565. /* Reasons why we (or a remote OR) might close a stream. See tor-spec.txt for
  566. * documentation of these. The values must match. */
  567. #define END_STREAM_REASON_MISC 1
  568. #define END_STREAM_REASON_RESOLVEFAILED 2
  569. #define END_STREAM_REASON_CONNECTREFUSED 3
  570. #define END_STREAM_REASON_EXITPOLICY 4
  571. #define END_STREAM_REASON_DESTROY 5
  572. #define END_STREAM_REASON_DONE 6
  573. #define END_STREAM_REASON_TIMEOUT 7
  574. #define END_STREAM_REASON_NOROUTE 8
  575. #define END_STREAM_REASON_HIBERNATING 9
  576. #define END_STREAM_REASON_INTERNAL 10
  577. #define END_STREAM_REASON_RESOURCELIMIT 11
  578. #define END_STREAM_REASON_CONNRESET 12
  579. #define END_STREAM_REASON_TORPROTOCOL 13
  580. #define END_STREAM_REASON_NOTDIRECTORY 14
  581. #define END_STREAM_REASON_ENTRYPOLICY 15
  582. /* These high-numbered end reasons are not part of the official spec,
  583. * and are not intended to be put in relay end cells. They are here
  584. * to be more informative when sending back socks replies to the
  585. * application. */
  586. /* XXXX 256 is no longer used; feel free to reuse it. */
  587. /** We were unable to attach the connection to any circuit at all. */
  588. /* XXXX the ways we use this one don't make a lot of sense. */
  589. #define END_STREAM_REASON_CANT_ATTACH 257
  590. /** We can't connect to any directories at all, so we killed our streams
  591. * before they can time out. */
  592. #define END_STREAM_REASON_NET_UNREACHABLE 258
  593. /** This is a SOCKS connection, and the client used (or misused) the SOCKS
  594. * protocol in a way we couldn't handle. */
  595. #define END_STREAM_REASON_SOCKSPROTOCOL 259
  596. /** This is a transparent proxy connection, but we can't extract the original
  597. * target address:port. */
  598. #define END_STREAM_REASON_CANT_FETCH_ORIG_DEST 260
  599. /** This is a connection on the NATD port, and the destination IP:Port was
  600. * either ill-formed or out-of-range. */
  601. #define END_STREAM_REASON_INVALID_NATD_DEST 261
  602. /** The target address is in a private network (like 127.0.0.1 or 10.0.0.1);
  603. * you don't want to do that over a randomly chosen exit */
  604. #define END_STREAM_REASON_PRIVATE_ADDR 262
  605. /** This is an HTTP tunnel connection and the client used or misused HTTP in a
  606. * way we can't handle.
  607. */
  608. #define END_STREAM_REASON_HTTPPROTOCOL 263
  609. /** Bitwise-and this value with endreason to mask out all flags. */
  610. #define END_STREAM_REASON_MASK 511
  611. /** Bitwise-or this with the argument to control_event_stream_status
  612. * to indicate that the reason came from an END cell. */
  613. #define END_STREAM_REASON_FLAG_REMOTE 512
  614. /** Bitwise-or this with the argument to control_event_stream_status
  615. * to indicate that we already sent a CLOSED stream event. */
  616. #define END_STREAM_REASON_FLAG_ALREADY_SENT_CLOSED 1024
  617. /** Bitwise-or this with endreason to indicate that we already sent
  618. * a socks reply, and no further reply needs to be sent from
  619. * connection_mark_unattached_ap(). */
  620. #define END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED 2048
  621. /** Reason for remapping an AP connection's address: we have a cached
  622. * answer. */
  623. #define REMAP_STREAM_SOURCE_CACHE 1
  624. /** Reason for remapping an AP connection's address: the exit node told us an
  625. * answer. */
  626. #define REMAP_STREAM_SOURCE_EXIT 2
  627. /* 'type' values to use in RESOLVED cells. Specified in tor-spec.txt. */
  628. #define RESOLVED_TYPE_HOSTNAME 0
  629. #define RESOLVED_TYPE_IPV4 4
  630. #define RESOLVED_TYPE_IPV6 6
  631. #define RESOLVED_TYPE_ERROR_TRANSIENT 0xF0
  632. #define RESOLVED_TYPE_ERROR 0xF1
  633. /* Negative reasons are internal: we never send them in a DESTROY or TRUNCATE
  634. * call; they only go to the controller for tracking */
  635. /* Closing introduction point that were opened in parallel. */
  636. #define END_CIRC_REASON_IP_NOW_REDUNDANT -4
  637. /** Our post-timeout circuit time measurement period expired.
  638. * We must give up now */
  639. #define END_CIRC_REASON_MEASUREMENT_EXPIRED -3
  640. /** We couldn't build a path for this circuit. */
  641. #define END_CIRC_REASON_NOPATH -2
  642. /** Catch-all "other" reason for closing origin circuits. */
  643. #define END_CIRC_AT_ORIGIN -1
  644. /* Reasons why we (or a remote OR) might close a circuit. See tor-spec.txt
  645. * section 5.4 for documentation of these. */
  646. #define END_CIRC_REASON_MIN_ 0
  647. #define END_CIRC_REASON_NONE 0
  648. #define END_CIRC_REASON_TORPROTOCOL 1
  649. #define END_CIRC_REASON_INTERNAL 2
  650. #define END_CIRC_REASON_REQUESTED 3
  651. #define END_CIRC_REASON_HIBERNATING 4
  652. #define END_CIRC_REASON_RESOURCELIMIT 5
  653. #define END_CIRC_REASON_CONNECTFAILED 6
  654. #define END_CIRC_REASON_OR_IDENTITY 7
  655. #define END_CIRC_REASON_CHANNEL_CLOSED 8
  656. #define END_CIRC_REASON_FINISHED 9
  657. #define END_CIRC_REASON_TIMEOUT 10
  658. #define END_CIRC_REASON_DESTROYED 11
  659. #define END_CIRC_REASON_NOSUCHSERVICE 12
  660. #define END_CIRC_REASON_MAX_ 12
  661. /** Bitwise-OR this with the argument to circuit_mark_for_close() or
  662. * control_event_circuit_status() to indicate that the reason was
  663. * passed through from a destroy or truncate cell. */
  664. #define END_CIRC_REASON_FLAG_REMOTE 512
  665. /** Length of 'y' portion of 'y.onion' URL. */
  666. #define REND_SERVICE_ID_LEN_BASE32 16
  667. /** Length of 'y.onion' including '.onion' URL. */
  668. #define REND_SERVICE_ADDRESS_LEN (16+1+5)
  669. /** Length of a binary-encoded rendezvous service ID. */
  670. #define REND_SERVICE_ID_LEN 10
  671. /** Time period for which a v2 descriptor will be valid. */
  672. #define REND_TIME_PERIOD_V2_DESC_VALIDITY (24*60*60)
  673. /** Time period within which two sets of v2 descriptors will be uploaded in
  674. * parallel. */
  675. #define REND_TIME_PERIOD_OVERLAPPING_V2_DESCS (60*60)
  676. /** Number of non-consecutive replicas (i.e. distributed somewhere
  677. * in the ring) for a descriptor. */
  678. #define REND_NUMBER_OF_NON_CONSECUTIVE_REPLICAS 2
  679. /** Number of consecutive replicas for a descriptor. */
  680. #define REND_NUMBER_OF_CONSECUTIVE_REPLICAS 3
  681. /** Length of v2 descriptor ID (32 base32 chars = 160 bits). */
  682. #define REND_DESC_ID_V2_LEN_BASE32 BASE32_DIGEST_LEN
  683. /** Length of the base32-encoded secret ID part of versioned hidden service
  684. * descriptors. */
  685. #define REND_SECRET_ID_PART_LEN_BASE32 BASE32_DIGEST_LEN
  686. /** Length of the base32-encoded hash of an introduction point's
  687. * identity key. */
  688. #define REND_INTRO_POINT_ID_LEN_BASE32 BASE32_DIGEST_LEN
  689. /** Length of the descriptor cookie that is used for client authorization
  690. * to hidden services. */
  691. #define REND_DESC_COOKIE_LEN 16
  692. /** Length of the base64-encoded descriptor cookie that is used for
  693. * exchanging client authorization between hidden service and client. */
  694. #define REND_DESC_COOKIE_LEN_BASE64 22
  695. /** Length of client identifier in encrypted introduction points for hidden
  696. * service authorization type 'basic'. */
  697. #define REND_BASIC_AUTH_CLIENT_ID_LEN 4
  698. /** Multiple of the number of clients to which the real number of clients
  699. * is padded with fake clients for hidden service authorization type
  700. * 'basic'. */
  701. #define REND_BASIC_AUTH_CLIENT_MULTIPLE 16
  702. /** Length of client entry consisting of client identifier and encrypted
  703. * session key for hidden service authorization type 'basic'. */
  704. #define REND_BASIC_AUTH_CLIENT_ENTRY_LEN (REND_BASIC_AUTH_CLIENT_ID_LEN \
  705. + CIPHER_KEY_LEN)
  706. /** Maximum size of v2 hidden service descriptors. */
  707. #define REND_DESC_MAX_SIZE (20 * 1024)
  708. /** Legal characters for use in authorized client names for a hidden
  709. * service. */
  710. #define REND_LEGAL_CLIENTNAME_CHARACTERS \
  711. "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+-_"
  712. /** Maximum length of authorized client names for a hidden service. */
  713. #define REND_CLIENTNAME_MAX_LEN 16
  714. /** Length of the rendezvous cookie that is used to connect circuits at the
  715. * rendezvous point. */
  716. #define REND_COOKIE_LEN DIGEST_LEN
  717. /** Client authorization type that a hidden service performs. */
  718. typedef enum rend_auth_type_t {
  719. REND_NO_AUTH = 0,
  720. REND_BASIC_AUTH = 1,
  721. REND_STEALTH_AUTH = 2,
  722. } rend_auth_type_t;
  723. /** Client-side configuration of authorization for a hidden service. */
  724. typedef struct rend_service_authorization_t {
  725. uint8_t descriptor_cookie[REND_DESC_COOKIE_LEN];
  726. char onion_address[REND_SERVICE_ADDRESS_LEN+1];
  727. rend_auth_type_t auth_type;
  728. } rend_service_authorization_t;
  729. /** Client- and server-side data that is used for hidden service connection
  730. * establishment. Not all fields contain data depending on where this struct
  731. * is used. */
  732. typedef struct rend_data_t {
  733. /* Hidden service protocol version of this base object. */
  734. uint32_t version;
  735. /** List of HSDir fingerprints on which this request has been sent to. This
  736. * contains binary identity digest of the directory of size DIGEST_LEN. */
  737. smartlist_t *hsdirs_fp;
  738. /** Rendezvous cookie used by both, client and service. */
  739. char rend_cookie[REND_COOKIE_LEN];
  740. /** Number of streams associated with this rendezvous circuit. */
  741. int nr_streams;
  742. } rend_data_t;
  743. typedef struct rend_data_v2_t {
  744. /* Rendezvous base data. */
  745. rend_data_t base_;
  746. /** Onion address (without the .onion part) that a client requests. */
  747. char onion_address[REND_SERVICE_ID_LEN_BASE32+1];
  748. /** Descriptor ID for each replicas computed from the onion address. If
  749. * the onion address is empty, this array MUST be empty. We keep them so
  750. * we know when to purge our entry in the last hsdir request table. */
  751. char descriptor_id[REND_NUMBER_OF_NON_CONSECUTIVE_REPLICAS][DIGEST_LEN];
  752. /** (Optional) descriptor cookie that is used by a client. */
  753. char descriptor_cookie[REND_DESC_COOKIE_LEN];
  754. /** Authorization type for accessing a service used by a client. */
  755. rend_auth_type_t auth_type;
  756. /** Descriptor ID for a client request. The control port command HSFETCH
  757. * uses this. It's set if the descriptor query should only use this
  758. * descriptor ID. */
  759. char desc_id_fetch[DIGEST_LEN];
  760. /** Hash of the hidden service's PK used by a service. */
  761. char rend_pk_digest[DIGEST_LEN];
  762. } rend_data_v2_t;
  763. /* From a base rend_data_t object <b>d</d>, return the v2 object. */
  764. static inline
  765. rend_data_v2_t *TO_REND_DATA_V2(const rend_data_t *d)
  766. {
  767. tor_assert(d);
  768. tor_assert(d->version == 2);
  769. return DOWNCAST(rend_data_v2_t, d);
  770. }
  771. /* Stub because we can't include hs_ident.h. */
  772. struct hs_ident_edge_conn_t;
  773. struct hs_ident_dir_conn_t;
  774. struct hs_ident_circuit_t;
  775. typedef struct hsdir_index_t hsdir_index_t;
  776. /** Time interval for tracking replays of DH public keys received in
  777. * INTRODUCE2 cells. Used only to avoid launching multiple
  778. * simultaneous attempts to connect to the same rendezvous point. */
  779. #define REND_REPLAY_TIME_INTERVAL (5 * 60)
  780. /** Used to indicate which way a cell is going on a circuit. */
  781. typedef enum {
  782. CELL_DIRECTION_IN=1, /**< The cell is moving towards the origin. */
  783. CELL_DIRECTION_OUT=2, /**< The cell is moving away from the origin. */
  784. } cell_direction_t;
  785. /** Initial value for both sides of a circuit transmission window when the
  786. * circuit is initialized. Measured in cells. */
  787. #define CIRCWINDOW_START 1000
  788. #define CIRCWINDOW_START_MIN 100
  789. #define CIRCWINDOW_START_MAX 1000
  790. /** Amount to increment a circuit window when we get a circuit SENDME. */
  791. #define CIRCWINDOW_INCREMENT 100
  792. /** Initial value on both sides of a stream transmission window when the
  793. * stream is initialized. Measured in cells. */
  794. #define STREAMWINDOW_START 500
  795. #define STREAMWINDOW_START_MAX 500
  796. /** Amount to increment a stream window when we get a stream SENDME. */
  797. #define STREAMWINDOW_INCREMENT 50
  798. /** Maximum number of queued cells on a circuit for which we are the
  799. * midpoint before we give up and kill it. This must be >= circwindow
  800. * to avoid killing innocent circuits, and >= circwindow*2 to give
  801. * leaky-pipe a chance of working someday. The ORCIRC_MAX_MIDDLE_KILL_THRESH
  802. * ratio controls the margin of error between emitting a warning and
  803. * killing the circuit.
  804. */
  805. #define ORCIRC_MAX_MIDDLE_CELLS (CIRCWINDOW_START_MAX*2)
  806. /** Ratio of hard (circuit kill) to soft (warning) thresholds for the
  807. * ORCIRC_MAX_MIDDLE_CELLS tests.
  808. */
  809. #define ORCIRC_MAX_MIDDLE_KILL_THRESH (1.1f)
  810. /* Cell commands. These values are defined in tor-spec.txt. */
  811. #define CELL_PADDING 0
  812. #define CELL_CREATE 1
  813. #define CELL_CREATED 2
  814. #define CELL_RELAY 3
  815. #define CELL_DESTROY 4
  816. #define CELL_CREATE_FAST 5
  817. #define CELL_CREATED_FAST 6
  818. #define CELL_VERSIONS 7
  819. #define CELL_NETINFO 8
  820. #define CELL_RELAY_EARLY 9
  821. #define CELL_CREATE2 10
  822. #define CELL_CREATED2 11
  823. #define CELL_PADDING_NEGOTIATE 12
  824. #define CELL_VPADDING 128
  825. #define CELL_CERTS 129
  826. #define CELL_AUTH_CHALLENGE 130
  827. #define CELL_AUTHENTICATE 131
  828. #define CELL_AUTHORIZE 132
  829. #define CELL_COMMAND_MAX_ 132
  830. /** How long to test reachability before complaining to the user. */
  831. #define TIMEOUT_UNTIL_UNREACHABILITY_COMPLAINT (20*60)
  832. /** Legal characters in a nickname. */
  833. #define LEGAL_NICKNAME_CHARACTERS \
  834. "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
  835. /** Name to use in client TLS certificates if no nickname is given. Once
  836. * Tor 0.1.2.x is obsolete, we can remove this. */
  837. #define DEFAULT_CLIENT_NICKNAME "client"
  838. /** Name chosen by routers that don't configure nicknames */
  839. #define UNNAMED_ROUTER_NICKNAME "Unnamed"
  840. /** Number of bytes in a SOCKS4 header. */
  841. #define SOCKS4_NETWORK_LEN 8
  842. /*
  843. * Relay payload:
  844. * Relay command [1 byte]
  845. * Recognized [2 bytes]
  846. * Stream ID [2 bytes]
  847. * Partial SHA-1 [4 bytes]
  848. * Length [2 bytes]
  849. * Relay payload [498 bytes]
  850. */
  851. /** Number of bytes in a cell, minus cell header. */
  852. #define CELL_PAYLOAD_SIZE 509
  853. /** Number of bytes in a cell transmitted over the network, in the longest
  854. * form */
  855. #define CELL_MAX_NETWORK_SIZE 514
  856. /** Maximum length of a header on a variable-length cell. */
  857. #define VAR_CELL_MAX_HEADER_SIZE 7
  858. static int get_cell_network_size(int wide_circ_ids);
  859. static inline int get_cell_network_size(int wide_circ_ids)
  860. {
  861. return wide_circ_ids ? CELL_MAX_NETWORK_SIZE : CELL_MAX_NETWORK_SIZE - 2;
  862. }
  863. static int get_var_cell_header_size(int wide_circ_ids);
  864. static inline int get_var_cell_header_size(int wide_circ_ids)
  865. {
  866. return wide_circ_ids ? VAR_CELL_MAX_HEADER_SIZE :
  867. VAR_CELL_MAX_HEADER_SIZE - 2;
  868. }
  869. static int get_circ_id_size(int wide_circ_ids);
  870. static inline int get_circ_id_size(int wide_circ_ids)
  871. {
  872. return wide_circ_ids ? 4 : 2;
  873. }
  874. /** Number of bytes in a relay cell's header (not including general cell
  875. * header). */
  876. #define RELAY_HEADER_SIZE (1+2+2+4+2)
  877. /** Largest number of bytes that can fit in a relay cell payload. */
  878. #define RELAY_PAYLOAD_SIZE (CELL_PAYLOAD_SIZE-RELAY_HEADER_SIZE)
  879. /** Identifies a circuit on an or_connection */
  880. typedef uint32_t circid_t;
  881. /** Identifies a stream on a circuit */
  882. typedef uint16_t streamid_t;
  883. /* channel_t typedef; struct channel_s is in channel.h */
  884. typedef struct channel_s channel_t;
  885. /* channel_listener_t typedef; struct channel_listener_s is in channel.h */
  886. typedef struct channel_listener_s channel_listener_t;
  887. /* TLS channel stuff */
  888. typedef struct channel_tls_s channel_tls_t;
  889. /* circuitmux_t typedef; struct circuitmux_s is in circuitmux.h */
  890. typedef struct circuitmux_s circuitmux_t;
  891. typedef struct cell_t cell_t;
  892. typedef struct var_cell_t var_cell_t;
  893. typedef struct packed_cell_t packed_cell_t;
  894. typedef struct cell_queue_t cell_queue_t;
  895. typedef struct destroy_cell_t destroy_cell_t;
  896. typedef struct destroy_cell_queue_t destroy_cell_queue_t;
  897. /** A parsed Extended ORPort message. */
  898. typedef struct ext_or_cmd_t {
  899. uint16_t cmd; /** Command type */
  900. uint16_t len; /** Body length */
  901. char body[FLEXIBLE_ARRAY_MEMBER]; /** Message body */
  902. } ext_or_cmd_t;
  903. /** Beginning of a RELAY cell payload. */
  904. typedef struct {
  905. uint8_t command; /**< The end-to-end relay command. */
  906. uint16_t recognized; /**< Used to tell whether cell is for us. */
  907. streamid_t stream_id; /**< Which stream is this cell associated with? */
  908. char integrity[4]; /**< Used to tell whether cell is corrupted. */
  909. uint16_t length; /**< How long is the payload body? */
  910. } relay_header_t;
  911. typedef struct socks_request_t socks_request_t;
  912. typedef struct entry_port_cfg_t entry_port_cfg_t;
  913. typedef struct server_port_cfg_t server_port_cfg_t;
  914. /* Values for connection_t.magic: used to make sure that downcasts (casts from
  915. * connection_t to foo_connection_t) are safe. */
  916. #define BASE_CONNECTION_MAGIC 0x7C3C304Eu
  917. #define OR_CONNECTION_MAGIC 0x7D31FF03u
  918. #define EDGE_CONNECTION_MAGIC 0xF0374013u
  919. #define ENTRY_CONNECTION_MAGIC 0xbb4a5703
  920. #define DIR_CONNECTION_MAGIC 0x9988ffeeu
  921. #define CONTROL_CONNECTION_MAGIC 0x8abc765du
  922. #define LISTENER_CONNECTION_MAGIC 0x1a1ac741u
  923. /** Minimum length of the random part of an AUTH_CHALLENGE cell. */
  924. #define OR_AUTH_CHALLENGE_LEN 32
  925. /**
  926. * @name Certificate types for CERTS cells.
  927. *
  928. * These values are defined by the protocol, and affect how an X509
  929. * certificate in a CERTS cell is interpreted and used.
  930. *
  931. * @{ */
  932. /** A certificate that authenticates a TLS link key. The subject key
  933. * must match the key used in the TLS handshake; it must be signed by
  934. * the identity key. */
  935. #define OR_CERT_TYPE_TLS_LINK 1
  936. /** A self-signed identity certificate. The subject key must be a
  937. * 1024-bit RSA key. */
  938. #define OR_CERT_TYPE_ID_1024 2
  939. /** A certificate that authenticates a key used in an AUTHENTICATE cell
  940. * in the v3 handshake. The subject key must be a 1024-bit RSA key; it
  941. * must be signed by the identity key */
  942. #define OR_CERT_TYPE_AUTH_1024 3
  943. /* DOCDOC */
  944. #define OR_CERT_TYPE_RSA_ED_CROSSCERT 7
  945. /**@}*/
  946. /** The first supported type of AUTHENTICATE cell. It contains
  947. * a bunch of structures signed with an RSA1024 key. The signed
  948. * structures include a HMAC using negotiated TLS secrets, and a digest
  949. * of all cells sent or received before the AUTHENTICATE cell (including
  950. * the random server-generated AUTH_CHALLENGE cell).
  951. */
  952. #define AUTHTYPE_RSA_SHA256_TLSSECRET 1
  953. /** As AUTHTYPE_RSA_SHA256_TLSSECRET, but instead of using the
  954. * negotiated TLS secrets, uses exported keying material from the TLS
  955. * session as described in RFC 5705.
  956. *
  957. * Not used by today's tors, since everything that supports this
  958. * also supports ED25519_SHA256_5705, which is better.
  959. **/
  960. #define AUTHTYPE_RSA_SHA256_RFC5705 2
  961. /** As AUTHTYPE_RSA_SHA256_RFC5705, but uses an Ed25519 identity key to
  962. * authenticate. */
  963. #define AUTHTYPE_ED25519_SHA256_RFC5705 3
  964. /*
  965. * NOTE: authchallenge_type_is_better() relies on these AUTHTYPE codes
  966. * being sorted in order of preference. If we someday add one with
  967. * a higher numerical value that we don't like as much, we should revise
  968. * authchallenge_type_is_better().
  969. */
  970. /** The length of the part of the AUTHENTICATE cell body that the client and
  971. * server can generate independently (when using RSA_SHA256_TLSSECRET). It
  972. * contains everything except the client's timestamp, the client's randomly
  973. * generated nonce, and the signature. */
  974. #define V3_AUTH_FIXED_PART_LEN (8+(32*6))
  975. /** The length of the part of the AUTHENTICATE cell body that the client
  976. * signs. */
  977. #define V3_AUTH_BODY_LEN (V3_AUTH_FIXED_PART_LEN + 8 + 16)
  978. typedef struct or_handshake_certs_t or_handshake_certs_t;
  979. typedef struct or_handshake_state_t or_handshake_state_t;
  980. /** Length of Extended ORPort connection identifier. */
  981. #define EXT_OR_CONN_ID_LEN DIGEST_LEN /* 20 */
  982. /*
  983. * OR_CONN_HIGHWATER and OR_CONN_LOWWATER moved from connection_or.c so
  984. * channeltls.c can see them too.
  985. */
  986. /** When adding cells to an OR connection's outbuf, keep adding until the
  987. * outbuf is at least this long, or we run out of cells. */
  988. #define OR_CONN_HIGHWATER (32*1024)
  989. /** Add cells to an OR connection's outbuf whenever the outbuf's data length
  990. * drops below this size. */
  991. #define OR_CONN_LOWWATER (16*1024)
  992. typedef struct connection_t connection_t;
  993. typedef struct control_connection_t control_connection_t;
  994. typedef struct dir_connection_t dir_connection_t;
  995. typedef struct edge_connection_t edge_connection_t;
  996. typedef struct entry_connection_t entry_connection_t;
  997. typedef struct listener_connection_t listener_connection_t;
  998. typedef struct or_connection_t or_connection_t;
  999. /** Cast a connection_t subtype pointer to a connection_t **/
  1000. #define TO_CONN(c) (&(((c)->base_)))
  1001. /** Cast a entry_connection_t subtype pointer to a connection_t **/
  1002. #define ENTRY_TO_CONN(c) (TO_CONN(ENTRY_TO_EDGE_CONN(c)))
  1003. /** What action type does an address policy indicate: accept or reject? */
  1004. typedef enum {
  1005. ADDR_POLICY_ACCEPT=1,
  1006. ADDR_POLICY_REJECT=2,
  1007. } addr_policy_action_t;
  1008. #define addr_policy_action_bitfield_t ENUM_BF(addr_policy_action_t)
  1009. /** A reference-counted address policy rule. */
  1010. typedef struct addr_policy_t {
  1011. int refcnt; /**< Reference count */
  1012. /** What to do when the policy matches.*/
  1013. addr_policy_action_bitfield_t policy_type:2;
  1014. unsigned int is_private:1; /**< True iff this is the pseudo-address,
  1015. * "private". */
  1016. unsigned int is_canonical:1; /**< True iff this policy is the canonical
  1017. * copy (stored in a hash table to avoid
  1018. * duplication of common policies) */
  1019. maskbits_t maskbits; /**< Accept/reject all addresses <b>a</b> such that the
  1020. * first <b>maskbits</b> bits of <b>a</b> match
  1021. * <b>addr</b>. */
  1022. /** Base address to accept or reject.
  1023. *
  1024. * Note that wildcards are treated
  1025. * differntly depending on address family. An AF_UNSPEC address means
  1026. * "All addresses, IPv4 or IPv6." An AF_INET address with maskbits==0 means
  1027. * "All IPv4 addresses" and an AF_INET6 address with maskbits == 0 means
  1028. * "All IPv6 addresses".
  1029. **/
  1030. tor_addr_t addr;
  1031. uint16_t prt_min; /**< Lowest port number to accept/reject. */
  1032. uint16_t prt_max; /**< Highest port number to accept/reject. */
  1033. } addr_policy_t;
  1034. typedef struct cached_dir_t cached_dir_t;
  1035. /** Enum used to remember where a signed_descriptor_t is stored and how to
  1036. * manage the memory for signed_descriptor_body. */
  1037. typedef enum {
  1038. /** The descriptor isn't stored on disk at all: the copy in memory is
  1039. * canonical; the saved_offset field is meaningless. */
  1040. SAVED_NOWHERE=0,
  1041. /** The descriptor is stored in the cached_routers file: the
  1042. * signed_descriptor_body is meaningless; the signed_descriptor_len and
  1043. * saved_offset are used to index into the mmaped cache file. */
  1044. SAVED_IN_CACHE,
  1045. /** The descriptor is stored in the cached_routers.new file: the
  1046. * signed_descriptor_body and saved_offset fields are both set. */
  1047. /* FFFF (We could also mmap the file and grow the mmap as needed, or
  1048. * lazy-load the descriptor text by using seek and read. We don't, for
  1049. * now.)
  1050. */
  1051. SAVED_IN_JOURNAL
  1052. } saved_location_t;
  1053. #define saved_location_bitfield_t ENUM_BF(saved_location_t)
  1054. /** Enumeration: what directory object is being downloaded?
  1055. * This determines which schedule is selected to perform the download. */
  1056. typedef enum {
  1057. DL_SCHED_GENERIC = 0,
  1058. DL_SCHED_CONSENSUS = 1,
  1059. DL_SCHED_BRIDGE = 2,
  1060. } download_schedule_t;
  1061. #define download_schedule_bitfield_t ENUM_BF(download_schedule_t)
  1062. /** Enumeration: is the download schedule for downloading from an authority,
  1063. * or from any available directory mirror?
  1064. * During bootstrap, "any" means a fallback (or an authority, if there
  1065. * are no fallbacks).
  1066. * When we have a valid consensus, "any" means any directory server. */
  1067. typedef enum {
  1068. DL_WANT_ANY_DIRSERVER = 0,
  1069. DL_WANT_AUTHORITY = 1,
  1070. } download_want_authority_t;
  1071. #define download_want_authority_bitfield_t \
  1072. ENUM_BF(download_want_authority_t)
  1073. /** Enumeration: do we want to increment the schedule position each time a
  1074. * connection is attempted (these attempts can be concurrent), or do we want
  1075. * to increment the schedule position after a connection fails? */
  1076. typedef enum {
  1077. DL_SCHED_INCREMENT_FAILURE = 0,
  1078. DL_SCHED_INCREMENT_ATTEMPT = 1,
  1079. } download_schedule_increment_t;
  1080. #define download_schedule_increment_bitfield_t \
  1081. ENUM_BF(download_schedule_increment_t)
  1082. typedef struct download_status_t download_status_t;
  1083. /** If n_download_failures is this high, the download can never happen. */
  1084. #define IMPOSSIBLE_TO_DOWNLOAD 255
  1085. /** The max size we expect router descriptor annotations we create to
  1086. * be. We'll accept larger ones if we see them on disk, but we won't
  1087. * create any that are larger than this. */
  1088. #define ROUTER_ANNOTATION_BUF_LEN 256
  1089. typedef struct signed_descriptor_t signed_descriptor_t;
  1090. /** A signed integer representing a country code. */
  1091. typedef int16_t country_t;
  1092. /** Flags used to summarize the declared protocol versions of a relay,
  1093. * so we don't need to parse them again and again. */
  1094. typedef struct protover_summary_flags_t {
  1095. /** True iff we have a proto line for this router, or a versions line
  1096. * from which we could infer the protocols. */
  1097. unsigned int protocols_known:1;
  1098. /** True iff this router has a version or protocol list that allows it to
  1099. * accept EXTEND2 cells. This requires Relay=2. */
  1100. unsigned int supports_extend2_cells:1;
  1101. /** True iff this router has a protocol list that allows it to negotiate
  1102. * ed25519 identity keys on a link handshake with us. This
  1103. * requires LinkAuth=3. */
  1104. unsigned int supports_ed25519_link_handshake_compat:1;
  1105. /** True iff this router has a protocol list that allows it to negotiate
  1106. * ed25519 identity keys on a link handshake, at all. This requires some
  1107. * LinkAuth=X for X >= 3. */
  1108. unsigned int supports_ed25519_link_handshake_any:1;
  1109. /** True iff this router has a protocol list that allows it to be an
  1110. * introduction point supporting ed25519 authentication key which is part of
  1111. * the v3 protocol detailed in proposal 224. This requires HSIntro=4. */
  1112. unsigned int supports_ed25519_hs_intro : 1;
  1113. /** True iff this router has a protocol list that allows it to be an hidden
  1114. * service directory supporting version 3 as seen in proposal 224. This
  1115. * requires HSDir=2. */
  1116. unsigned int supports_v3_hsdir : 1;
  1117. /** True iff this router has a protocol list that allows it to be an hidden
  1118. * service rendezvous point supporting version 3 as seen in proposal 224.
  1119. * This requires HSRend=2. */
  1120. unsigned int supports_v3_rendezvous_point: 1;
  1121. } protover_summary_flags_t;
  1122. typedef struct routerinfo_t routerinfo_t;
  1123. typedef struct extrainfo_t extrainfo_t;
  1124. typedef struct routerstatus_t routerstatus_t;
  1125. typedef struct microdesc_t microdesc_t;
  1126. typedef struct node_t node_t;
  1127. typedef struct vote_microdesc_hash_t vote_microdesc_hash_t;
  1128. typedef struct vote_routerstatus_t vote_routerstatus_t;
  1129. typedef struct document_signature_t document_signature_t;
  1130. typedef struct networkstatus_voter_info_t networkstatus_voter_info_t;
  1131. typedef struct networkstatus_sr_info_t networkstatus_sr_info_t;
  1132. /** Enumerates recognized flavors of a consensus networkstatus document. All
  1133. * flavors of a consensus are generated from the same set of votes, but they
  1134. * present different types information to different versions of Tor. */
  1135. typedef enum {
  1136. FLAV_NS = 0,
  1137. FLAV_MICRODESC = 1,
  1138. } consensus_flavor_t;
  1139. /** How many different consensus flavors are there? */
  1140. #define N_CONSENSUS_FLAVORS ((int)(FLAV_MICRODESC)+1)
  1141. typedef struct networkstatus_t networkstatus_t;
  1142. typedef struct ns_detached_signatures_t ns_detached_signatures_t;
  1143. /** Allowable types of desc_store_t. */
  1144. typedef enum store_type_t {
  1145. ROUTER_STORE = 0,
  1146. EXTRAINFO_STORE = 1
  1147. } store_type_t;
  1148. typedef struct desc_store_t desc_store_t;
  1149. typedef struct routerlist_t routerlist_t;
  1150. typedef struct extend_info_t extend_info_t;
  1151. typedef struct authority_cert_t authority_cert_t;
  1152. /** Bitfield enum type listing types of information that directory authorities
  1153. * can be authoritative about, and that directory caches may or may not cache.
  1154. *
  1155. * Note that the granularity here is based on authority granularity and on
  1156. * cache capabilities. Thus, one particular bit may correspond in practice to
  1157. * a few types of directory info, so long as every authority that pronounces
  1158. * officially about one of the types prounounces officially about all of them,
  1159. * and so long as every cache that caches one of them caches all of them.
  1160. */
  1161. typedef enum {
  1162. NO_DIRINFO = 0,
  1163. /** Serves/signs v3 directory information: votes, consensuses, certs */
  1164. V3_DIRINFO = 1 << 2,
  1165. /** Serves bridge descriptors. */
  1166. BRIDGE_DIRINFO = 1 << 4,
  1167. /** Serves extrainfo documents. */
  1168. EXTRAINFO_DIRINFO=1 << 5,
  1169. /** Serves microdescriptors. */
  1170. MICRODESC_DIRINFO=1 << 6,
  1171. } dirinfo_type_t;
  1172. #define ALL_DIRINFO ((dirinfo_type_t)((1<<7)-1))
  1173. #define CRYPT_PATH_MAGIC 0x70127012u
  1174. struct fast_handshake_state_t;
  1175. struct ntor_handshake_state_t;
  1176. struct crypto_dh_t;
  1177. #define ONION_HANDSHAKE_TYPE_TAP 0x0000
  1178. #define ONION_HANDSHAKE_TYPE_FAST 0x0001
  1179. #define ONION_HANDSHAKE_TYPE_NTOR 0x0002
  1180. #define MAX_ONION_HANDSHAKE_TYPE 0x0002
  1181. typedef struct {
  1182. uint16_t tag;
  1183. union {
  1184. struct fast_handshake_state_t *fast;
  1185. struct crypto_dh_t *tap;
  1186. struct ntor_handshake_state_t *ntor;
  1187. } u;
  1188. } onion_handshake_state_t;
  1189. typedef struct relay_crypto_t relay_crypto_t;
  1190. typedef struct crypt_path_t crypt_path_t;
  1191. typedef struct crypt_path_reference_t crypt_path_reference_t;
  1192. #define CPATH_KEY_MATERIAL_LEN (20*2+16*2)
  1193. typedef struct cpath_build_state_t cpath_build_state_t;
  1194. /** "magic" value for an origin_circuit_t */
  1195. #define ORIGIN_CIRCUIT_MAGIC 0x35315243u
  1196. /** "magic" value for an or_circuit_t */
  1197. #define OR_CIRCUIT_MAGIC 0x98ABC04Fu
  1198. /** "magic" value for a circuit that would have been freed by circuit_free,
  1199. * but which we're keeping around until a cpuworker reply arrives. See
  1200. * circuit_free() for more documentation. */
  1201. #define DEAD_CIRCUIT_MAGIC 0xdeadc14c
  1202. struct create_cell_t;
  1203. /** Entry in the cell stats list of a circuit; used only if CELL_STATS
  1204. * events are enabled. */
  1205. typedef struct testing_cell_stats_entry_t {
  1206. uint8_t command; /**< cell command number. */
  1207. /** Waiting time in centiseconds if this event is for a removed cell,
  1208. * or 0 if this event is for adding a cell to the queue. 22 bits can
  1209. * store more than 11 hours, enough to assume that a circuit with this
  1210. * delay would long have been closed. */
  1211. unsigned int waiting_time:22;
  1212. unsigned int removed:1; /**< 0 for added to, 1 for removed from queue. */
  1213. unsigned int exitward:1; /**< 0 for app-ward, 1 for exit-ward. */
  1214. } testing_cell_stats_entry_t;
  1215. typedef struct circuit_t circuit_t;
  1216. typedef struct origin_circuit_t origin_circuit_t;
  1217. typedef struct or_circuit_t or_circuit_t;
  1218. /** Largest number of relay_early cells that we can send on a given
  1219. * circuit. */
  1220. #define MAX_RELAY_EARLY_CELLS_PER_CIRCUIT 8
  1221. /**
  1222. * Describes the circuit building process in simplified terms based
  1223. * on the path bias accounting state for a circuit.
  1224. *
  1225. * NOTE: These state values are enumerated in the order for which we
  1226. * expect circuits to transition through them. If you add states,
  1227. * you need to preserve this overall ordering. The various pathbias
  1228. * state transition and accounting functions (pathbias_mark_* and
  1229. * pathbias_count_*) contain ordinal comparisons to enforce proper
  1230. * state transitions for corrections.
  1231. *
  1232. * This state machine and the associated logic was created to prevent
  1233. * miscounting due to unknown cases of circuit reuse. See also tickets
  1234. * #6475 and #7802.
  1235. */
  1236. typedef enum {
  1237. /** This circuit is "new". It has not yet completed a first hop
  1238. * or been counted by the path bias code. */
  1239. PATH_STATE_NEW_CIRC = 0,
  1240. /** This circuit has completed one/two hops, and has been counted by
  1241. * the path bias logic. */
  1242. PATH_STATE_BUILD_ATTEMPTED = 1,
  1243. /** This circuit has been completely built */
  1244. PATH_STATE_BUILD_SUCCEEDED = 2,
  1245. /** Did we try to attach any SOCKS streams or hidserv introductions to
  1246. * this circuit?
  1247. *
  1248. * Note: If we ever implement end-to-end stream timing through test
  1249. * stream probes (#5707), we must *not* set this for those probes
  1250. * (or any other automatic streams) because the adversary could
  1251. * just tag at a later point.
  1252. */
  1253. PATH_STATE_USE_ATTEMPTED = 3,
  1254. /** Did any SOCKS streams or hidserv introductions actually succeed on
  1255. * this circuit?
  1256. *
  1257. * If any streams detatch/fail from this circuit, the code transitions
  1258. * the circuit back to PATH_STATE_USE_ATTEMPTED to ensure we probe. See
  1259. * pathbias_mark_use_rollback() for that.
  1260. */
  1261. PATH_STATE_USE_SUCCEEDED = 4,
  1262. /**
  1263. * This is a special state to indicate that we got a corrupted
  1264. * relay cell on a circuit and we don't intend to probe it.
  1265. */
  1266. PATH_STATE_USE_FAILED = 5,
  1267. /**
  1268. * This is a special state to indicate that we already counted
  1269. * the circuit. Used to guard against potential state machine
  1270. * violations.
  1271. */
  1272. PATH_STATE_ALREADY_COUNTED = 6,
  1273. } path_state_t;
  1274. #define path_state_bitfield_t ENUM_BF(path_state_t)
  1275. #if REND_COOKIE_LEN != DIGEST_LEN
  1276. #error "The REND_TOKEN_LEN macro assumes REND_COOKIE_LEN == DIGEST_LEN"
  1277. #endif
  1278. #define REND_TOKEN_LEN DIGEST_LEN
  1279. /** Convert a circuit subtype to a circuit_t. */
  1280. #define TO_CIRCUIT(x) (&((x)->base_))
  1281. /* limits for TCP send and recv buffer size used for constrained sockets */
  1282. #define MIN_CONSTRAINED_TCP_BUFFER 2048
  1283. #define MAX_CONSTRAINED_TCP_BUFFER 262144 /* 256k */
  1284. /** @name Isolation flags
  1285. Ways to isolate client streams
  1286. @{
  1287. */
  1288. /** Isolate based on destination port */
  1289. #define ISO_DESTPORT (1u<<0)
  1290. /** Isolate based on destination address */
  1291. #define ISO_DESTADDR (1u<<1)
  1292. /** Isolate based on SOCKS authentication */
  1293. #define ISO_SOCKSAUTH (1u<<2)
  1294. /** Isolate based on client protocol choice */
  1295. #define ISO_CLIENTPROTO (1u<<3)
  1296. /** Isolate based on client address */
  1297. #define ISO_CLIENTADDR (1u<<4)
  1298. /** Isolate based on session group (always on). */
  1299. #define ISO_SESSIONGRP (1u<<5)
  1300. /** Isolate based on newnym epoch (always on). */
  1301. #define ISO_NYM_EPOCH (1u<<6)
  1302. /** Isolate all streams (Internal only). */
  1303. #define ISO_STREAM (1u<<7)
  1304. /**@}*/
  1305. /** Default isolation level for ports. */
  1306. #define ISO_DEFAULT (ISO_CLIENTADDR|ISO_SOCKSAUTH|ISO_SESSIONGRP|ISO_NYM_EPOCH)
  1307. /** Indicates that we haven't yet set a session group on a port_cfg_t. */
  1308. #define SESSION_GROUP_UNSET -1
  1309. /** Session group reserved for directory connections */
  1310. #define SESSION_GROUP_DIRCONN -2
  1311. /** Session group reserved for resolve requests launched by a controller */
  1312. #define SESSION_GROUP_CONTROL_RESOLVE -3
  1313. /** First automatically allocated session group number */
  1314. #define SESSION_GROUP_FIRST_AUTO -4
  1315. typedef struct port_cfg_t port_cfg_t;
  1316. typedef struct routerset_t routerset_t;
  1317. /** A magic value for the (Socks|OR|...)Port options below, telling Tor
  1318. * to pick its own port. */
  1319. #define CFG_AUTO_PORT 0xc4005e
  1320. /** Enumeration of outbound address configuration types:
  1321. * Exit-only, OR-only, or both */
  1322. typedef enum {OUTBOUND_ADDR_EXIT, OUTBOUND_ADDR_OR,
  1323. OUTBOUND_ADDR_EXIT_AND_OR,
  1324. OUTBOUND_ADDR_MAX} outbound_addr_t;
  1325. struct config_line_t;
  1326. /** Configuration options for a Tor process. */
  1327. typedef struct {
  1328. uint32_t magic_;
  1329. /** What should the tor process actually do? */
  1330. enum {
  1331. CMD_RUN_TOR=0, CMD_LIST_FINGERPRINT, CMD_HASH_PASSWORD,
  1332. CMD_VERIFY_CONFIG, CMD_RUN_UNITTESTS, CMD_DUMP_CONFIG,
  1333. CMD_KEYGEN,
  1334. CMD_KEY_EXPIRATION,
  1335. } command;
  1336. char *command_arg; /**< Argument for command-line option. */
  1337. struct config_line_t *Logs; /**< New-style list of configuration lines
  1338. * for logs */
  1339. int LogTimeGranularity; /**< Log resolution in milliseconds. */
  1340. int LogMessageDomains; /**< Boolean: Should we log the domain(s) in which
  1341. * each log message occurs? */
  1342. int TruncateLogFile; /**< Boolean: Should we truncate the log file
  1343. before we start writing? */
  1344. char *SyslogIdentityTag; /**< Identity tag to add for syslog logging. */
  1345. char *AndroidIdentityTag; /**< Identity tag to add for Android logging. */
  1346. char *DebugLogFile; /**< Where to send verbose log messages. */
  1347. char *DataDirectory_option; /**< Where to store long-term data, as
  1348. * configured by the user. */
  1349. char *DataDirectory; /**< Where to store long-term data, as modified. */
  1350. int DataDirectoryGroupReadable; /**< Boolean: Is the DataDirectory g+r? */
  1351. char *KeyDirectory_option; /**< Where to store keys, as
  1352. * configured by the user. */
  1353. char *KeyDirectory; /**< Where to store keys data, as modified. */
  1354. int KeyDirectoryGroupReadable; /**< Boolean: Is the KeyDirectory g+r? */
  1355. char *CacheDirectory_option; /**< Where to store cached data, as
  1356. * configured by the user. */
  1357. char *CacheDirectory; /**< Where to store cached data, as modified. */
  1358. int CacheDirectoryGroupReadable; /**< Boolean: Is the CacheDirectory g+r? */
  1359. char *Nickname; /**< OR only: nickname of this onion router. */
  1360. char *Address; /**< OR only: configured address for this onion router. */
  1361. char *PidFile; /**< Where to store PID of Tor process. */
  1362. routerset_t *ExitNodes; /**< Structure containing nicknames, digests,
  1363. * country codes and IP address patterns of ORs to
  1364. * consider as exits. */
  1365. routerset_t *EntryNodes;/**< Structure containing nicknames, digests,
  1366. * country codes and IP address patterns of ORs to
  1367. * consider as entry points. */
  1368. int StrictNodes; /**< Boolean: When none of our EntryNodes or ExitNodes
  1369. * are up, or we need to access a node in ExcludeNodes,
  1370. * do we just fail instead? */
  1371. routerset_t *ExcludeNodes;/**< Structure containing nicknames, digests,
  1372. * country codes and IP address patterns of ORs
  1373. * not to use in circuits. But see StrictNodes
  1374. * above. */
  1375. routerset_t *ExcludeExitNodes;/**< Structure containing nicknames, digests,
  1376. * country codes and IP address patterns of
  1377. * ORs not to consider as exits. */
  1378. /** Union of ExcludeNodes and ExcludeExitNodes */
  1379. routerset_t *ExcludeExitNodesUnion_;
  1380. int DisableAllSwap; /**< Boolean: Attempt to call mlockall() on our
  1381. * process for all current and future memory. */
  1382. struct config_line_t *ExitPolicy; /**< Lists of exit policy components. */
  1383. int ExitPolicyRejectPrivate; /**< Should we not exit to reserved private
  1384. * addresses, and our own published addresses?
  1385. */
  1386. int ExitPolicyRejectLocalInterfaces; /**< Should we not exit to local
  1387. * interface addresses?
  1388. * Includes OutboundBindAddresses and
  1389. * configured ports. */
  1390. int ReducedExitPolicy; /**<Should we use the Reduced Exit Policy? */
  1391. struct config_line_t *SocksPolicy; /**< Lists of socks policy components */
  1392. struct config_line_t *DirPolicy; /**< Lists of dir policy components */
  1393. /** Local address to bind outbound sockets */
  1394. struct config_line_t *OutboundBindAddress;
  1395. /** Local address to bind outbound relay sockets */
  1396. struct config_line_t *OutboundBindAddressOR;
  1397. /** Local address to bind outbound exit sockets */
  1398. struct config_line_t *OutboundBindAddressExit;
  1399. /** Addresses derived from the various OutboundBindAddress lines.
  1400. * [][0] is IPv4, [][1] is IPv6
  1401. */
  1402. tor_addr_t OutboundBindAddresses[OUTBOUND_ADDR_MAX][2];
  1403. /** Directory server only: which versions of
  1404. * Tor should we tell users to run? */
  1405. struct config_line_t *RecommendedVersions;
  1406. struct config_line_t *RecommendedClientVersions;
  1407. struct config_line_t *RecommendedServerVersions;
  1408. struct config_line_t *RecommendedPackages;
  1409. /** Whether dirservers allow router descriptors with private IPs. */
  1410. int DirAllowPrivateAddresses;
  1411. /** Whether routers accept EXTEND cells to routers with private IPs. */
  1412. int ExtendAllowPrivateAddresses;
  1413. char *User; /**< Name of user to run Tor as. */
  1414. /** Ports to listen on for OR connections. */
  1415. struct config_line_t *ORPort_lines;
  1416. /** Ports to listen on for extended OR connections. */
  1417. struct config_line_t *ExtORPort_lines;
  1418. /** Ports to listen on for SOCKS connections. */
  1419. struct config_line_t *SocksPort_lines;
  1420. /** Ports to listen on for transparent pf/netfilter connections. */
  1421. struct config_line_t *TransPort_lines;
  1422. char *TransProxyType; /**< What kind of transparent proxy
  1423. * implementation are we using? */
  1424. /** Parsed value of TransProxyType. */
  1425. enum {
  1426. TPT_DEFAULT,
  1427. TPT_PF_DIVERT,
  1428. TPT_IPFW,
  1429. TPT_TPROXY,
  1430. } TransProxyType_parsed;
  1431. /** Ports to listen on for transparent natd connections. */
  1432. struct config_line_t *NATDPort_lines;
  1433. /** Ports to listen on for HTTP Tunnel connections. */
  1434. struct config_line_t *HTTPTunnelPort_lines;
  1435. struct config_line_t *ControlPort_lines; /**< Ports to listen on for control
  1436. * connections. */
  1437. /** List of Unix Domain Sockets to listen on for control connections. */
  1438. struct config_line_t *ControlSocket;
  1439. int ControlSocketsGroupWritable; /**< Boolean: Are control sockets g+rw? */
  1440. int UnixSocksGroupWritable; /**< Boolean: Are SOCKS Unix sockets g+rw? */
  1441. /** Ports to listen on for directory connections. */
  1442. struct config_line_t *DirPort_lines;
  1443. /** Ports to listen on for DNS requests. */
  1444. struct config_line_t *DNSPort_lines;
  1445. /* MaxMemInQueues value as input by the user. We clean this up to be
  1446. * MaxMemInQueues. */
  1447. uint64_t MaxMemInQueues_raw;
  1448. uint64_t MaxMemInQueues;/**< If we have more memory than this allocated
  1449. * for queues and buffers, run the OOM handler */
  1450. /** Above this value, consider ourselves low on RAM. */
  1451. uint64_t MaxMemInQueues_low_threshold;
  1452. /** @name port booleans
  1453. *
  1454. * Derived booleans: For server ports and ControlPort, true iff there is a
  1455. * non-listener port on an AF_INET or AF_INET6 address of the given type
  1456. * configured in one of the _lines options above.
  1457. * For client ports, also true if there is a unix socket configured.
  1458. * If you are checking for client ports, you may want to use:
  1459. * SocksPort_set || TransPort_set || NATDPort_set || DNSPort_set ||
  1460. * HTTPTunnelPort_set
  1461. * rather than SocksPort_set.
  1462. *
  1463. * @{
  1464. */
  1465. unsigned int ORPort_set : 1;
  1466. unsigned int SocksPort_set : 1;
  1467. unsigned int TransPort_set : 1;
  1468. unsigned int NATDPort_set : 1;
  1469. unsigned int ControlPort_set : 1;
  1470. unsigned int DirPort_set : 1;
  1471. unsigned int DNSPort_set : 1;
  1472. unsigned int ExtORPort_set : 1;
  1473. unsigned int HTTPTunnelPort_set : 1;
  1474. /**@}*/
  1475. int AssumeReachable; /**< Whether to publish our descriptor regardless. */
  1476. int AuthoritativeDir; /**< Boolean: is this an authoritative directory? */
  1477. int V3AuthoritativeDir; /**< Boolean: is this an authoritative directory
  1478. * for version 3 directories? */
  1479. int VersioningAuthoritativeDir; /**< Boolean: is this an authoritative
  1480. * directory that's willing to recommend
  1481. * versions? */
  1482. int BridgeAuthoritativeDir; /**< Boolean: is this an authoritative directory
  1483. * that aggregates bridge descriptors? */
  1484. /** If set on a bridge relay, it will include this value on a new
  1485. * "bridge-distribution-request" line in its bridge descriptor. */
  1486. char *BridgeDistribution;
  1487. /** If set on a bridge authority, it will answer requests on its dirport
  1488. * for bridge statuses -- but only if the requests use this password. */
  1489. char *BridgePassword;
  1490. /** If BridgePassword is set, this is a SHA256 digest of the basic http
  1491. * authenticator for it. Used so we can do a time-independent comparison. */
  1492. char *BridgePassword_AuthDigest_;
  1493. int UseBridges; /**< Boolean: should we start all circuits with a bridge? */
  1494. struct config_line_t *Bridges; /**< List of bootstrap bridge addresses. */
  1495. struct config_line_t *ClientTransportPlugin; /**< List of client
  1496. transport plugins. */
  1497. struct config_line_t *ServerTransportPlugin; /**< List of client
  1498. transport plugins. */
  1499. /** List of TCP/IP addresses that transports should listen at. */
  1500. struct config_line_t *ServerTransportListenAddr;
  1501. /** List of options that must be passed to pluggable transports. */
  1502. struct config_line_t *ServerTransportOptions;
  1503. int BridgeRelay; /**< Boolean: are we acting as a bridge relay? We make
  1504. * this explicit so we can change how we behave in the
  1505. * future. */
  1506. /** Boolean: if we know the bridge's digest, should we get new
  1507. * descriptors from the bridge authorities or from the bridge itself? */
  1508. int UpdateBridgesFromAuthority;
  1509. int AvoidDiskWrites; /**< Boolean: should we never cache things to disk?
  1510. * Not used yet. */
  1511. int ClientOnly; /**< Boolean: should we never evolve into a server role? */
  1512. int ReducedConnectionPadding; /**< Boolean: Should we try to keep connections
  1513. open shorter and pad them less against
  1514. connection-level traffic analysis? */
  1515. /** Autobool: if auto, then connection padding will be negotiated by client
  1516. * and server. If 0, it will be fully disabled. If 1, the client will still
  1517. * pad to the server regardless of server support. */
  1518. int ConnectionPadding;
  1519. /** To what authority types do we publish our descriptor? Choices are
  1520. * "v1", "v2", "v3", "bridge", or "". */
  1521. smartlist_t *PublishServerDescriptor;
  1522. /** A bitfield of authority types, derived from PublishServerDescriptor. */
  1523. dirinfo_type_t PublishServerDescriptor_;
  1524. /** Boolean: do we publish hidden service descriptors to the HS auths? */
  1525. int PublishHidServDescriptors;
  1526. int FetchServerDescriptors; /**< Do we fetch server descriptors as normal? */
  1527. int FetchHidServDescriptors; /**< and hidden service descriptors? */
  1528. int MinUptimeHidServDirectoryV2; /**< As directory authority, accept hidden
  1529. * service directories after what time? */
  1530. int FetchUselessDescriptors; /**< Do we fetch non-running descriptors too? */
  1531. int AllDirActionsPrivate; /**< Should every directory action be sent
  1532. * through a Tor circuit? */
  1533. /** Run in 'tor2web mode'? (I.e. only make client connections to hidden
  1534. * services, and use a single hop for all hidden-service-related
  1535. * circuits.) */
  1536. int Tor2webMode;
  1537. /** A routerset that should be used when picking RPs for HS circuits. */
  1538. routerset_t *Tor2webRendezvousPoints;
  1539. /** A routerset that should be used when picking middle nodes for HS
  1540. * circuits. */
  1541. routerset_t *HSLayer2Nodes;
  1542. /** A routerset that should be used when picking third-hop nodes for HS
  1543. * circuits. */
  1544. routerset_t *HSLayer3Nodes;
  1545. /** Onion Services in HiddenServiceSingleHopMode make one-hop (direct)
  1546. * circuits between the onion service server, and the introduction and
  1547. * rendezvous points. (Onion service descriptors are still posted using
  1548. * 3-hop paths, to avoid onion service directories blocking the service.)
  1549. * This option makes every hidden service instance hosted by
  1550. * this tor instance a Single Onion Service.
  1551. * HiddenServiceSingleHopMode requires HiddenServiceNonAnonymousMode to be
  1552. * set to 1.
  1553. * Use rend_service_allow_non_anonymous_connection() or
  1554. * rend_service_reveal_startup_time() instead of using this option directly.
  1555. */
  1556. int HiddenServiceSingleHopMode;
  1557. /* Makes hidden service clients and servers non-anonymous on this tor
  1558. * instance. Allows the non-anonymous HiddenServiceSingleHopMode. Enables
  1559. * non-anonymous behaviour in the hidden service protocol.
  1560. * Use rend_service_non_anonymous_mode_enabled() instead of using this option
  1561. * directly.
  1562. */
  1563. int HiddenServiceNonAnonymousMode;
  1564. int ConnLimit; /**< Demanded minimum number of simultaneous connections. */
  1565. int ConnLimit_; /**< Maximum allowed number of simultaneous connections. */
  1566. int ConnLimit_high_thresh; /**< start trying to lower socket usage if we
  1567. * have this many. */
  1568. int ConnLimit_low_thresh; /**< try to get down to here after socket
  1569. * exhaustion. */
  1570. int RunAsDaemon; /**< If true, run in the background. (Unix only) */
  1571. int FascistFirewall; /**< Whether to prefer ORs reachable on open ports. */
  1572. smartlist_t *FirewallPorts; /**< Which ports our firewall allows
  1573. * (strings). */
  1574. /** IP:ports our firewall allows. */
  1575. struct config_line_t *ReachableAddresses;
  1576. struct config_line_t *ReachableORAddresses; /**< IP:ports for OR conns. */
  1577. struct config_line_t *ReachableDirAddresses; /**< IP:ports for Dir conns. */
  1578. int ConstrainedSockets; /**< Shrink xmit and recv socket buffers. */
  1579. uint64_t ConstrainedSockSize; /**< Size of constrained buffers. */
  1580. /** Whether we should drop exit streams from Tors that we don't know are
  1581. * relays. One of "0" (never refuse), "1" (always refuse), or "-1" (do
  1582. * what the consensus says, defaulting to 'refuse' if the consensus says
  1583. * nothing). */
  1584. int RefuseUnknownExits;
  1585. /** Application ports that require all nodes in circ to have sufficient
  1586. * uptime. */
  1587. smartlist_t *LongLivedPorts;
  1588. /** Application ports that are likely to be unencrypted and
  1589. * unauthenticated; we reject requests for them to prevent the
  1590. * user from screwing up and leaking plaintext secrets to an
  1591. * observer somewhere on the Internet. */
  1592. smartlist_t *RejectPlaintextPorts;
  1593. /** Related to RejectPlaintextPorts above, except this config option
  1594. * controls whether we warn (in the log and via a controller status
  1595. * event) every time a risky connection is attempted. */
  1596. smartlist_t *WarnPlaintextPorts;
  1597. /** Should we try to reuse the same exit node for a given host */
  1598. smartlist_t *TrackHostExits;
  1599. int TrackHostExitsExpire; /**< Number of seconds until we expire an
  1600. * addressmap */
  1601. struct config_line_t *AddressMap; /**< List of address map directives. */
  1602. int AutomapHostsOnResolve; /**< If true, when we get a resolve request for a
  1603. * hostname ending with one of the suffixes in
  1604. * <b>AutomapHostsSuffixes</b>, map it to a
  1605. * virtual address. */
  1606. /** List of suffixes for <b>AutomapHostsOnResolve</b>. The special value
  1607. * "." means "match everything." */
  1608. smartlist_t *AutomapHostsSuffixes;
  1609. int RendPostPeriod; /**< How often do we post each rendezvous service
  1610. * descriptor? Remember to publish them independently. */
  1611. int KeepalivePeriod; /**< How often do we send padding cells to keep
  1612. * connections alive? */
  1613. int SocksTimeout; /**< How long do we let a socks connection wait
  1614. * unattached before we fail it? */
  1615. int LearnCircuitBuildTimeout; /**< If non-zero, we attempt to learn a value
  1616. * for CircuitBuildTimeout based on timeout
  1617. * history. Use circuit_build_times_disabled()
  1618. * rather than checking this value directly. */
  1619. int CircuitBuildTimeout; /**< Cull non-open circuits that were born at
  1620. * least this many seconds ago. Used until
  1621. * adaptive algorithm learns a new value. */
  1622. int CircuitsAvailableTimeout; /**< Try to have an open circuit for at
  1623. least this long after last activity */
  1624. int CircuitStreamTimeout; /**< If non-zero, detach streams from circuits
  1625. * and try a new circuit if the stream has been
  1626. * waiting for this many seconds. If zero, use
  1627. * our default internal timeout schedule. */
  1628. int MaxOnionQueueDelay; /*< DOCDOC */
  1629. int NewCircuitPeriod; /**< How long do we use a circuit before building
  1630. * a new one? */
  1631. int MaxCircuitDirtiness; /**< Never use circs that were first used more than
  1632. this interval ago. */
  1633. uint64_t BandwidthRate; /**< How much bandwidth, on average, are we willing
  1634. * to use in a second? */
  1635. uint64_t BandwidthBurst; /**< How much bandwidth, at maximum, are we willing
  1636. * to use in a second? */
  1637. uint64_t MaxAdvertisedBandwidth; /**< How much bandwidth are we willing to
  1638. * tell other nodes we have? */
  1639. uint64_t RelayBandwidthRate; /**< How much bandwidth, on average, are we
  1640. * willing to use for all relayed conns? */
  1641. uint64_t RelayBandwidthBurst; /**< How much bandwidth, at maximum, will we
  1642. * use in a second for all relayed conns? */
  1643. uint64_t PerConnBWRate; /**< Long-term bw on a single TLS conn, if set. */
  1644. uint64_t PerConnBWBurst; /**< Allowed burst on a single TLS conn, if set. */
  1645. int NumCPUs; /**< How many CPUs should we try to use? */
  1646. struct config_line_t *RendConfigLines; /**< List of configuration lines
  1647. * for rendezvous services. */
  1648. struct config_line_t *HidServAuth; /**< List of configuration lines for
  1649. * client-side authorizations for hidden
  1650. * services */
  1651. char *ContactInfo; /**< Contact info to be published in the directory. */
  1652. int HeartbeatPeriod; /**< Log heartbeat messages after this many seconds
  1653. * have passed. */
  1654. int MainloopStats; /**< Log main loop statistics as part of the
  1655. * heartbeat messages. */
  1656. char *HTTPProxy; /**< hostname[:port] to use as http proxy, if any. */
  1657. tor_addr_t HTTPProxyAddr; /**< Parsed IPv4 addr for http proxy, if any. */
  1658. uint16_t HTTPProxyPort; /**< Parsed port for http proxy, if any. */
  1659. char *HTTPProxyAuthenticator; /**< username:password string, if any. */
  1660. char *HTTPSProxy; /**< hostname[:port] to use as https proxy, if any. */
  1661. tor_addr_t HTTPSProxyAddr; /**< Parsed addr for https proxy, if any. */
  1662. uint16_t HTTPSProxyPort; /**< Parsed port for https proxy, if any. */
  1663. char *HTTPSProxyAuthenticator; /**< username:password string, if any. */
  1664. char *Socks4Proxy; /**< hostname:port to use as a SOCKS4 proxy, if any. */
  1665. tor_addr_t Socks4ProxyAddr; /**< Derived from Socks4Proxy. */
  1666. uint16_t Socks4ProxyPort; /**< Derived from Socks4Proxy. */
  1667. char *Socks5Proxy; /**< hostname:port to use as a SOCKS5 proxy, if any. */
  1668. tor_addr_t Socks5ProxyAddr; /**< Derived from Sock5Proxy. */
  1669. uint16_t Socks5ProxyPort; /**< Derived from Socks5Proxy. */
  1670. char *Socks5ProxyUsername; /**< Username for SOCKS5 authentication, if any */
  1671. char *Socks5ProxyPassword; /**< Password for SOCKS5 authentication, if any */
  1672. /** List of configuration lines for replacement directory authorities.
  1673. * If you just want to replace one class of authority at a time,
  1674. * use the "Alternate*Authority" options below instead. */
  1675. struct config_line_t *DirAuthorities;
  1676. /** List of fallback directory servers */
  1677. struct config_line_t *FallbackDir;
  1678. /** Whether to use the default hard-coded FallbackDirs */
  1679. int UseDefaultFallbackDirs;
  1680. /** Weight to apply to all directory authority rates if considering them
  1681. * along with fallbackdirs */
  1682. double DirAuthorityFallbackRate;
  1683. /** If set, use these main (currently v3) directory authorities and
  1684. * not the default ones. */
  1685. struct config_line_t *AlternateDirAuthority;
  1686. /** If set, use these bridge authorities and not the default one. */
  1687. struct config_line_t *AlternateBridgeAuthority;
  1688. struct config_line_t *MyFamily_lines; /**< Declared family for this OR. */
  1689. struct config_line_t *MyFamily; /**< Declared family for this OR,
  1690. normalized */
  1691. struct config_line_t *NodeFamilies; /**< List of config lines for
  1692. * node families */
  1693. smartlist_t *NodeFamilySets; /**< List of parsed NodeFamilies values. */
  1694. struct config_line_t *AuthDirBadExit; /**< Address policy for descriptors to
  1695. * mark as bad exits. */
  1696. struct config_line_t *AuthDirReject; /**< Address policy for descriptors to
  1697. * reject. */
  1698. struct config_line_t *AuthDirInvalid; /**< Address policy for descriptors to
  1699. * never mark as valid. */
  1700. /** @name AuthDir...CC
  1701. *
  1702. * Lists of country codes to mark as BadExit, or Invalid, or to
  1703. * reject entirely.
  1704. *
  1705. * @{
  1706. */
  1707. smartlist_t *AuthDirBadExitCCs;
  1708. smartlist_t *AuthDirInvalidCCs;
  1709. smartlist_t *AuthDirRejectCCs;
  1710. /**@}*/
  1711. int AuthDirListBadExits; /**< True iff we should list bad exits,
  1712. * and vote for all other exits as good. */
  1713. int AuthDirMaxServersPerAddr; /**< Do not permit more than this
  1714. * number of servers per IP address. */
  1715. int AuthDirHasIPv6Connectivity; /**< Boolean: are we on IPv6? */
  1716. int AuthDirPinKeys; /**< Boolean: Do we enforce key-pinning? */
  1717. /** If non-zero, always vote the Fast flag for any relay advertising
  1718. * this amount of capacity or more. */
  1719. uint64_t AuthDirFastGuarantee;
  1720. /** If non-zero, this advertised capacity or more is always sufficient
  1721. * to satisfy the bandwidth requirement for the Guard flag. */
  1722. uint64_t AuthDirGuardBWGuarantee;
  1723. char *AccountingStart; /**< How long is the accounting interval, and when
  1724. * does it start? */
  1725. uint64_t AccountingMax; /**< How many bytes do we allow per accounting
  1726. * interval before hibernation? 0 for "never
  1727. * hibernate." */
  1728. /** How do we determine when our AccountingMax has been reached?
  1729. * "max" for when in or out reaches AccountingMax
  1730. * "sum" for when in plus out reaches AccountingMax
  1731. * "in" for when in reaches AccountingMax
  1732. * "out" for when out reaches AccountingMax */
  1733. char *AccountingRule_option;
  1734. enum { ACCT_MAX, ACCT_SUM, ACCT_IN, ACCT_OUT } AccountingRule;
  1735. /** Base64-encoded hash of accepted passwords for the control system. */
  1736. struct config_line_t *HashedControlPassword;
  1737. /** As HashedControlPassword, but not saved. */
  1738. struct config_line_t *HashedControlSessionPassword;
  1739. int CookieAuthentication; /**< Boolean: do we enable cookie-based auth for
  1740. * the control system? */
  1741. char *CookieAuthFile; /**< Filesystem location of a ControlPort
  1742. * authentication cookie. */
  1743. char *ExtORPortCookieAuthFile; /**< Filesystem location of Extended
  1744. * ORPort authentication cookie. */
  1745. int CookieAuthFileGroupReadable; /**< Boolean: Is the CookieAuthFile g+r? */
  1746. int ExtORPortCookieAuthFileGroupReadable; /**< Boolean: Is the
  1747. * ExtORPortCookieAuthFile g+r? */
  1748. int LeaveStreamsUnattached; /**< Boolean: Does Tor attach new streams to
  1749. * circuits itself (0), or does it expect a controller
  1750. * to cope? (1) */
  1751. int DisablePredictedCircuits; /**< Boolean: does Tor preemptively
  1752. * make circuits in the background (0),
  1753. * or not (1)? */
  1754. /** Process specifier for a controller that ‘owns’ this Tor
  1755. * instance. Tor will terminate if its owning controller does. */
  1756. char *OwningControllerProcess;
  1757. /** FD specifier for a controller that owns this Tor instance. */
  1758. int OwningControllerFD;
  1759. int ShutdownWaitLength; /**< When we get a SIGINT and we're a server, how
  1760. * long do we wait before exiting? */
  1761. char *SafeLogging; /**< Contains "relay", "1", "0" (meaning no scrubbing). */
  1762. /* Derived from SafeLogging */
  1763. enum {
  1764. SAFELOG_SCRUB_ALL, SAFELOG_SCRUB_RELAY, SAFELOG_SCRUB_NONE
  1765. } SafeLogging_;
  1766. int Sandbox; /**< Boolean: should sandboxing be enabled? */
  1767. int SafeSocks; /**< Boolean: should we outright refuse application
  1768. * connections that use socks4 or socks5-with-local-dns? */
  1769. int ProtocolWarnings; /**< Boolean: when other parties screw up the Tor
  1770. * protocol, is it a warn or an info in our logs? */
  1771. int TestSocks; /**< Boolean: when we get a socks connection, do we loudly
  1772. * log whether it was DNS-leaking or not? */
  1773. int HardwareAccel; /**< Boolean: Should we enable OpenSSL hardware
  1774. * acceleration where available? */
  1775. /** Token Bucket Refill resolution in milliseconds. */
  1776. int TokenBucketRefillInterval;
  1777. char *AccelName; /**< Optional hardware acceleration engine name. */
  1778. char *AccelDir; /**< Optional hardware acceleration engine search dir. */
  1779. /** Boolean: Do we try to enter from a smallish number
  1780. * of fixed nodes? */
  1781. int UseEntryGuards_option;
  1782. /** Internal variable to remember whether we're actually acting on
  1783. * UseEntryGuards_option -- when we're a non-anonymous Tor2web client or
  1784. * Single Onion Service, it is always false, otherwise we use the value of
  1785. * UseEntryGuards_option. */
  1786. int UseEntryGuards;
  1787. int NumEntryGuards; /**< How many entry guards do we try to establish? */
  1788. /** If 1, we use any guardfraction information we see in the
  1789. * consensus. If 0, we don't. If -1, let the consensus parameter
  1790. * decide. */
  1791. int UseGuardFraction;
  1792. int NumDirectoryGuards; /**< How many dir guards do we try to establish?
  1793. * If 0, use value from NumEntryGuards. */
  1794. int NumPrimaryGuards; /**< How many primary guards do we want? */
  1795. int RephistTrackTime; /**< How many seconds do we keep rephist info? */
  1796. /** Should we always fetch our dir info on the mirror schedule (which
  1797. * means directly from the authorities) no matter our other config? */
  1798. int FetchDirInfoEarly;
  1799. /** Should we fetch our dir info at the start of the consensus period? */
  1800. int FetchDirInfoExtraEarly;
  1801. int DirCache; /**< Cache all directory documents and accept requests via
  1802. * tunnelled dir conns from clients. If 1, enabled (default);
  1803. * If 0, disabled. */
  1804. char *VirtualAddrNetworkIPv4; /**< Address and mask to hand out for virtual
  1805. * MAPADDRESS requests for IPv4 addresses */
  1806. char *VirtualAddrNetworkIPv6; /**< Address and mask to hand out for virtual
  1807. * MAPADDRESS requests for IPv6 addresses */
  1808. int ServerDNSSearchDomains; /**< Boolean: If set, we don't force exit
  1809. * addresses to be FQDNs, but rather search for them in
  1810. * the local domains. */
  1811. int ServerDNSDetectHijacking; /**< Boolean: If true, check for DNS failure
  1812. * hijacking. */
  1813. int ServerDNSRandomizeCase; /**< Boolean: Use the 0x20-hack to prevent
  1814. * DNS poisoning attacks. */
  1815. char *ServerDNSResolvConfFile; /**< If provided, we configure our internal
  1816. * resolver from the file here rather than from
  1817. * /etc/resolv.conf (Unix) or the registry (Windows). */
  1818. char *DirPortFrontPage; /**< This is a full path to a file with an html
  1819. disclaimer. This allows a server administrator to show
  1820. that they're running Tor and anyone visiting their server
  1821. will know this without any specialized knowledge. */
  1822. int DisableDebuggerAttachment; /**< Currently Linux only specific attempt to
  1823. disable ptrace; needs BSD testing. */
  1824. /** Boolean: if set, we start even if our resolv.conf file is missing
  1825. * or broken. */
  1826. int ServerDNSAllowBrokenConfig;
  1827. /** Boolean: if set, then even connections to private addresses will get
  1828. * rate-limited. */
  1829. int CountPrivateBandwidth;
  1830. smartlist_t *ServerDNSTestAddresses; /**< A list of addresses that definitely
  1831. * should be resolvable. Used for
  1832. * testing our DNS server. */
  1833. int EnforceDistinctSubnets; /**< If true, don't allow multiple routers in the
  1834. * same network zone in the same circuit. */
  1835. int AllowNonRFC953Hostnames; /**< If true, we allow connections to hostnames
  1836. * with weird characters. */
  1837. /** If true, we try resolving hostnames with weird characters. */
  1838. int ServerDNSAllowNonRFC953Hostnames;
  1839. /** If true, we try to download extra-info documents (and we serve them,
  1840. * if we are a cache). For authorities, this is always true. */
  1841. int DownloadExtraInfo;
  1842. /** If true, we're configured to collect statistics on clients
  1843. * requesting network statuses from us as directory. */
  1844. int DirReqStatistics_option;
  1845. /** Internal variable to remember whether we're actually acting on
  1846. * DirReqStatistics_option -- yes if it's set and we're a server, else no. */
  1847. int DirReqStatistics;
  1848. /** If true, the user wants us to collect statistics on port usage. */
  1849. int ExitPortStatistics;
  1850. /** If true, the user wants us to collect connection statistics. */
  1851. int ConnDirectionStatistics;
  1852. /** If true, the user wants us to collect cell statistics. */
  1853. int CellStatistics;
  1854. /** If true, the user wants us to collect padding statistics. */
  1855. int PaddingStatistics;
  1856. /** If true, the user wants us to collect statistics as entry node. */
  1857. int EntryStatistics;
  1858. /** If true, the user wants us to collect statistics as hidden service
  1859. * directory, introduction point, or rendezvous point. */
  1860. int HiddenServiceStatistics_option;
  1861. /** Internal variable to remember whether we're actually acting on
  1862. * HiddenServiceStatistics_option -- yes if it's set and we're a server,
  1863. * else no. */
  1864. int HiddenServiceStatistics;
  1865. /** If true, include statistics file contents in extra-info documents. */
  1866. int ExtraInfoStatistics;
  1867. /** If true, do not believe anybody who tells us that a domain resolves
  1868. * to an internal address, or that an internal address has a PTR mapping.
  1869. * Helps avoid some cross-site attacks. */
  1870. int ClientDNSRejectInternalAddresses;
  1871. /** If true, do not accept any requests to connect to internal addresses
  1872. * over randomly chosen exits. */
  1873. int ClientRejectInternalAddresses;
  1874. /** If true, clients may connect over IPv4. If false, they will avoid
  1875. * connecting over IPv4. We enforce this for OR and Dir connections. */
  1876. int ClientUseIPv4;
  1877. /** If true, clients may connect over IPv6. If false, they will avoid
  1878. * connecting over IPv4. We enforce this for OR and Dir connections.
  1879. * Use fascist_firewall_use_ipv6() instead of accessing this value
  1880. * directly. */
  1881. int ClientUseIPv6;
  1882. /** If true, prefer an IPv6 OR port over an IPv4 one for entry node
  1883. * connections. If auto, bridge clients prefer IPv6, and other clients
  1884. * prefer IPv4. Use node_ipv6_or_preferred() instead of accessing this value
  1885. * directly. */
  1886. int ClientPreferIPv6ORPort;
  1887. /** If true, prefer an IPv6 directory port over an IPv4 one for direct
  1888. * directory connections. If auto, bridge clients prefer IPv6, and other
  1889. * clients prefer IPv4. Use fascist_firewall_prefer_ipv6_dirport() instead of
  1890. * accessing this value directly. */
  1891. int ClientPreferIPv6DirPort;
  1892. /** The length of time that we think a consensus should be fresh. */
  1893. int V3AuthVotingInterval;
  1894. /** The length of time we think it will take to distribute votes. */
  1895. int V3AuthVoteDelay;
  1896. /** The length of time we think it will take to distribute signatures. */
  1897. int V3AuthDistDelay;
  1898. /** The number of intervals we think a consensus should be valid. */
  1899. int V3AuthNIntervalsValid;
  1900. /** Should advertise and sign consensuses with a legacy key, for key
  1901. * migration purposes? */
  1902. int V3AuthUseLegacyKey;
  1903. /** Location of bandwidth measurement file */
  1904. char *V3BandwidthsFile;
  1905. /** Location of guardfraction file */
  1906. char *GuardfractionFile;
  1907. /** Authority only: key=value pairs that we add to our networkstatus
  1908. * consensus vote on the 'params' line. */
  1909. char *ConsensusParams;
  1910. /** Authority only: minimum number of measured bandwidths we must see
  1911. * before we only believe measured bandwidths to assign flags. */
  1912. int MinMeasuredBWsForAuthToIgnoreAdvertised;
  1913. /** The length of time that we think an initial consensus should be fresh.
  1914. * Only altered on testing networks. */
  1915. int TestingV3AuthInitialVotingInterval;
  1916. /** The length of time we think it will take to distribute initial votes.
  1917. * Only altered on testing networks. */
  1918. int TestingV3AuthInitialVoteDelay;
  1919. /** The length of time we think it will take to distribute initial
  1920. * signatures. Only altered on testing networks.*/
  1921. int TestingV3AuthInitialDistDelay;
  1922. /** Offset in seconds added to the starting time for consensus
  1923. voting. Only altered on testing networks. */
  1924. int TestingV3AuthVotingStartOffset;
  1925. /** If an authority has been around for less than this amount of time, it
  1926. * does not believe its reachability information is accurate. Only
  1927. * altered on testing networks. */
  1928. int TestingAuthDirTimeToLearnReachability;
  1929. /** Clients don't download any descriptor this recent, since it will
  1930. * probably not have propagated to enough caches. Only altered on testing
  1931. * networks. */
  1932. int TestingEstimatedDescriptorPropagationTime;
  1933. /** Schedule for when servers should download things in general. Only
  1934. * altered on testing networks. */
  1935. int TestingServerDownloadInitialDelay;
  1936. /** Schedule for when clients should download things in general. Only
  1937. * altered on testing networks. */
  1938. int TestingClientDownloadInitialDelay;
  1939. /** Schedule for when servers should download consensuses. Only altered
  1940. * on testing networks. */
  1941. int TestingServerConsensusDownloadInitialDelay;
  1942. /** Schedule for when clients should download consensuses. Only altered
  1943. * on testing networks. */
  1944. int TestingClientConsensusDownloadInitialDelay;
  1945. /** Schedule for when clients should download consensuses from authorities
  1946. * if they are bootstrapping (that is, they don't have a usable, reasonably
  1947. * live consensus). Only used by clients fetching from a list of fallback
  1948. * directory mirrors.
  1949. *
  1950. * This schedule is incremented by (potentially concurrent) connection
  1951. * attempts, unlike other schedules, which are incremented by connection
  1952. * failures. Only altered on testing networks. */
  1953. int ClientBootstrapConsensusAuthorityDownloadInitialDelay;
  1954. /** Schedule for when clients should download consensuses from fallback
  1955. * directory mirrors if they are bootstrapping (that is, they don't have a
  1956. * usable, reasonably live consensus). Only used by clients fetching from a
  1957. * list of fallback directory mirrors.
  1958. *
  1959. * This schedule is incremented by (potentially concurrent) connection
  1960. * attempts, unlike other schedules, which are incremented by connection
  1961. * failures. Only altered on testing networks. */
  1962. int ClientBootstrapConsensusFallbackDownloadInitialDelay;
  1963. /** Schedule for when clients should download consensuses from authorities
  1964. * if they are bootstrapping (that is, they don't have a usable, reasonably
  1965. * live consensus). Only used by clients which don't have or won't fetch
  1966. * from a list of fallback directory mirrors.
  1967. *
  1968. * This schedule is incremented by (potentially concurrent) connection
  1969. * attempts, unlike other schedules, which are incremented by connection
  1970. * failures. Only altered on testing networks. */
  1971. int ClientBootstrapConsensusAuthorityOnlyDownloadInitialDelay;
  1972. /** Schedule for when clients should download bridge descriptors. Only
  1973. * altered on testing networks. */
  1974. int TestingBridgeDownloadInitialDelay;
  1975. /** Schedule for when clients should download bridge descriptors when they
  1976. * have no running bridges. Only altered on testing networks. */
  1977. int TestingBridgeBootstrapDownloadInitialDelay;
  1978. /** When directory clients have only a few descriptors to request, they
  1979. * batch them until they have more, or until this amount of time has
  1980. * passed. Only altered on testing networks. */
  1981. int TestingClientMaxIntervalWithoutRequest;
  1982. /** How long do we let a directory connection stall before expiring
  1983. * it? Only altered on testing networks. */
  1984. int TestingDirConnectionMaxStall;
  1985. /** How many simultaneous in-progress connections will we make when trying
  1986. * to fetch a consensus before we wait for one to complete, timeout, or
  1987. * error out? Only altered on testing networks. */
  1988. int ClientBootstrapConsensusMaxInProgressTries;
  1989. /** If true, we take part in a testing network. Change the defaults of a
  1990. * couple of other configuration options and allow to change the values
  1991. * of certain configuration options. */
  1992. int TestingTorNetwork;
  1993. /** Minimum value for the Exit flag threshold on testing networks. */
  1994. uint64_t TestingMinExitFlagThreshold;
  1995. /** Minimum value for the Fast flag threshold on testing networks. */
  1996. uint64_t TestingMinFastFlagThreshold;
  1997. /** Relays in a testing network which should be voted Exit
  1998. * regardless of exit policy. */
  1999. routerset_t *TestingDirAuthVoteExit;
  2000. int TestingDirAuthVoteExitIsStrict;
  2001. /** Relays in a testing network which should be voted Guard
  2002. * regardless of uptime and bandwidth. */
  2003. routerset_t *TestingDirAuthVoteGuard;
  2004. int TestingDirAuthVoteGuardIsStrict;
  2005. /** Relays in a testing network which should be voted HSDir
  2006. * regardless of uptime and DirPort. */
  2007. routerset_t *TestingDirAuthVoteHSDir;
  2008. int TestingDirAuthVoteHSDirIsStrict;
  2009. /** Enable CONN_BW events. Only altered on testing networks. */
  2010. int TestingEnableConnBwEvent;
  2011. /** Enable CELL_STATS events. Only altered on testing networks. */
  2012. int TestingEnableCellStatsEvent;
  2013. /** If true, and we have GeoIP data, and we're a bridge, keep a per-country
  2014. * count of how many client addresses have contacted us so that we can help
  2015. * the bridge authority guess which countries have blocked access to us. */
  2016. int BridgeRecordUsageByCountry;
  2017. /** Optionally, IPv4 and IPv6 GeoIP data. */
  2018. char *GeoIPFile;
  2019. char *GeoIPv6File;
  2020. /** Autobool: if auto, then any attempt to Exclude{Exit,}Nodes a particular
  2021. * country code will exclude all nodes in ?? and A1. If true, all nodes in
  2022. * ?? and A1 are excluded. Has no effect if we don't know any GeoIP data. */
  2023. int GeoIPExcludeUnknown;
  2024. /** If true, SIGHUP should reload the torrc. Sometimes controllers want
  2025. * to make this false. */
  2026. int ReloadTorrcOnSIGHUP;
  2027. /* The main parameter for picking circuits within a connection.
  2028. *
  2029. * If this value is positive, when picking a cell to relay on a connection,
  2030. * we always relay from the circuit whose weighted cell count is lowest.
  2031. * Cells are weighted exponentially such that if one cell is sent
  2032. * 'CircuitPriorityHalflife' seconds before another, it counts for half as
  2033. * much.
  2034. *
  2035. * If this value is zero, we're disabling the cell-EWMA algorithm.
  2036. *
  2037. * If this value is negative, we're using the default approach
  2038. * according to either Tor or a parameter set in the consensus.
  2039. */
  2040. double CircuitPriorityHalflife;
  2041. /** Set to true if the TestingTorNetwork configuration option is set.
  2042. * This is used so that options_validate() has a chance to realize that
  2043. * the defaults have changed. */
  2044. int UsingTestNetworkDefaults_;
  2045. /** If 1, we try to use microdescriptors to build circuits. If 0, we don't.
  2046. * If -1, Tor decides. */
  2047. int UseMicrodescriptors;
  2048. /** File where we should write the ControlPort. */
  2049. char *ControlPortWriteToFile;
  2050. /** Should that file be group-readable? */
  2051. int ControlPortFileGroupReadable;
  2052. #define MAX_MAX_CLIENT_CIRCUITS_PENDING 1024
  2053. /** Maximum number of non-open general-purpose origin circuits to allow at
  2054. * once. */
  2055. int MaxClientCircuitsPending;
  2056. /** If 1, we always send optimistic data when it's supported. If 0, we
  2057. * never use it. If -1, we do what the consensus says. */
  2058. int OptimisticData;
  2059. /** If 1, we accept and launch no external network connections, except on
  2060. * control ports. */
  2061. int DisableNetwork;
  2062. /**
  2063. * Parameters for path-bias detection.
  2064. * @{
  2065. * These options override the default behavior of Tor's (**currently
  2066. * experimental**) path bias detection algorithm. To try to find broken or
  2067. * misbehaving guard nodes, Tor looks for nodes where more than a certain
  2068. * fraction of circuits through that guard fail to get built.
  2069. *
  2070. * The PathBiasCircThreshold option controls how many circuits we need to
  2071. * build through a guard before we make these checks. The
  2072. * PathBiasNoticeRate, PathBiasWarnRate and PathBiasExtremeRate options
  2073. * control what fraction of circuits must succeed through a guard so we
  2074. * won't write log messages. If less than PathBiasExtremeRate circuits
  2075. * succeed *and* PathBiasDropGuards is set to 1, we disable use of that
  2076. * guard.
  2077. *
  2078. * When we have seen more than PathBiasScaleThreshold circuits through a
  2079. * guard, we scale our observations by 0.5 (governed by the consensus) so
  2080. * that new observations don't get swamped by old ones.
  2081. *
  2082. * By default, or if a negative value is provided for one of these options,
  2083. * Tor uses reasonable defaults from the networkstatus consensus document.
  2084. * If no defaults are available there, these options default to 150, .70,
  2085. * .50, .30, 0, and 300 respectively.
  2086. */
  2087. int PathBiasCircThreshold;
  2088. double PathBiasNoticeRate;
  2089. double PathBiasWarnRate;
  2090. double PathBiasExtremeRate;
  2091. int PathBiasDropGuards;
  2092. int PathBiasScaleThreshold;
  2093. /** @} */
  2094. /**
  2095. * Parameters for path-bias use detection
  2096. * @{
  2097. * Similar to the above options, these options override the default behavior
  2098. * of Tor's (**currently experimental**) path use bias detection algorithm.
  2099. *
  2100. * Where as the path bias parameters govern thresholds for successfully
  2101. * building circuits, these four path use bias parameters govern thresholds
  2102. * only for circuit usage. Circuits which receive no stream usage are not
  2103. * counted by this detection algorithm. A used circuit is considered
  2104. * successful if it is capable of carrying streams or otherwise receiving
  2105. * well-formed responses to RELAY cells.
  2106. *
  2107. * By default, or if a negative value is provided for one of these options,
  2108. * Tor uses reasonable defaults from the networkstatus consensus document.
  2109. * If no defaults are available there, these options default to 20, .80,
  2110. * .60, and 100, respectively.
  2111. */
  2112. int PathBiasUseThreshold;
  2113. double PathBiasNoticeUseRate;
  2114. double PathBiasExtremeUseRate;
  2115. int PathBiasScaleUseThreshold;
  2116. /** @} */
  2117. int IPv6Exit; /**< Do we support exiting to IPv6 addresses? */
  2118. /** Fraction: */
  2119. double PathsNeededToBuildCircuits;
  2120. /** What expiry time shall we place on our SSL certs? "0" means we
  2121. * should guess a suitable value. */
  2122. int SSLKeyLifetime;
  2123. /** How long (seconds) do we keep a guard before picking a new one? */
  2124. int GuardLifetime;
  2125. /** Is this an exit node? This is a tristate, where "1" means "yes, and use
  2126. * the default exit policy if none is given" and "0" means "no; exit policy
  2127. * is 'reject *'" and "auto" (-1) means "same as 1, but warn the user."
  2128. *
  2129. * XXXX Eventually, the default will be 0. */
  2130. int ExitRelay;
  2131. /** For how long (seconds) do we declare our signing keys to be valid? */
  2132. int SigningKeyLifetime;
  2133. /** For how long (seconds) do we declare our link keys to be valid? */
  2134. int TestingLinkCertLifetime;
  2135. /** For how long (seconds) do we declare our auth keys to be valid? */
  2136. int TestingAuthKeyLifetime;
  2137. /** How long before signing keys expire will we try to make a new one? */
  2138. int TestingSigningKeySlop;
  2139. /** How long before link keys expire will we try to make a new one? */
  2140. int TestingLinkKeySlop;
  2141. /** How long before auth keys expire will we try to make a new one? */
  2142. int TestingAuthKeySlop;
  2143. /** Force use of offline master key features: never generate a master
  2144. * ed25519 identity key except from tor --keygen */
  2145. int OfflineMasterKey;
  2146. enum {
  2147. FORCE_PASSPHRASE_AUTO=0,
  2148. FORCE_PASSPHRASE_ON,
  2149. FORCE_PASSPHRASE_OFF
  2150. } keygen_force_passphrase;
  2151. int use_keygen_passphrase_fd;
  2152. int keygen_passphrase_fd;
  2153. int change_key_passphrase;
  2154. char *master_key_fname;
  2155. /** Autobool: Do we try to retain capabilities if we can? */
  2156. int KeepBindCapabilities;
  2157. /** Maximum total size of unparseable descriptors to log during the
  2158. * lifetime of this Tor process.
  2159. */
  2160. uint64_t MaxUnparseableDescSizeToLog;
  2161. /** Bool (default: 1): Switch for the shared random protocol. Only
  2162. * relevant to a directory authority. If off, the authority won't
  2163. * participate in the protocol. If on (default), a flag is added to the
  2164. * vote indicating participation. */
  2165. int AuthDirSharedRandomness;
  2166. /** If 1, we skip all OOS checks. */
  2167. int DisableOOSCheck;
  2168. /** Autobool: Should we include Ed25519 identities in extend2 cells?
  2169. * If -1, we should do whatever the consensus parameter says. */
  2170. int ExtendByEd25519ID;
  2171. /** Bool (default: 1): When testing routerinfos as a directory authority,
  2172. * do we enforce Ed25519 identity match? */
  2173. /* NOTE: remove this option someday. */
  2174. int AuthDirTestEd25519LinkKeys;
  2175. /** Bool (default: 0): Tells if a %include was used on torrc */
  2176. int IncludeUsed;
  2177. /** The seconds after expiration which we as a relay should keep old
  2178. * consensuses around so that we can generate diffs from them. If 0,
  2179. * use the default. */
  2180. int MaxConsensusAgeForDiffs;
  2181. /** Bool (default: 0). Tells Tor to never try to exec another program.
  2182. */
  2183. int NoExec;
  2184. /** Have the KIST scheduler run every X milliseconds. If less than zero, do
  2185. * not use the KIST scheduler but use the old vanilla scheduler instead. If
  2186. * zero, do what the consensus says and fall back to using KIST as if this is
  2187. * set to "10 msec" if the consensus doesn't say anything. */
  2188. int KISTSchedRunInterval;
  2189. /** A multiplier for the KIST per-socket limit calculation. */
  2190. double KISTSockBufSizeFactor;
  2191. /** The list of scheduler type string ordered by priority that is first one
  2192. * has to be tried first. Default: KIST,KISTLite,Vanilla */
  2193. smartlist_t *Schedulers;
  2194. /* An ordered list of scheduler_types mapped from Schedulers. */
  2195. smartlist_t *SchedulerTypes_;
  2196. /** List of files that were opened by %include in torrc and torrc-defaults */
  2197. smartlist_t *FilesOpenedByIncludes;
  2198. /** If true, Tor shouldn't install any posix signal handlers, since it is
  2199. * running embedded inside another process.
  2200. */
  2201. int DisableSignalHandlers;
  2202. /** Autobool: Is the circuit creation DoS mitigation subsystem enabled? */
  2203. int DoSCircuitCreationEnabled;
  2204. /** Minimum concurrent connection needed from one single address before any
  2205. * defense is used. */
  2206. int DoSCircuitCreationMinConnections;
  2207. /** Circuit rate used to refill the token bucket. */
  2208. int DoSCircuitCreationRate;
  2209. /** Maximum allowed burst of circuits. Reaching that value, the address is
  2210. * detected as malicious and a defense might be used. */
  2211. int DoSCircuitCreationBurst;
  2212. /** When an address is marked as malicous, what defense should be used
  2213. * against it. See the dos_cc_defense_type_t enum. */
  2214. int DoSCircuitCreationDefenseType;
  2215. /** For how much time (in seconds) the defense is applicable for a malicious
  2216. * address. A random time delta is added to the defense time of an address
  2217. * which will be between 1 second and half of this value. */
  2218. int DoSCircuitCreationDefenseTimePeriod;
  2219. /** Autobool: Is the DoS connection mitigation subsystem enabled? */
  2220. int DoSConnectionEnabled;
  2221. /** Maximum concurrent connection allowed per address. */
  2222. int DoSConnectionMaxConcurrentCount;
  2223. /** When an address is reaches the maximum count, what defense should be
  2224. * used against it. See the dos_conn_defense_type_t enum. */
  2225. int DoSConnectionDefenseType;
  2226. /** Autobool: Do we refuse single hop client rendezvous? */
  2227. int DoSRefuseSingleHopClientRendezvous;
  2228. } or_options_t;
  2229. #define LOG_PROTOCOL_WARN (get_protocol_warning_severity_level())
  2230. /** Persistent state for an onion router, as saved to disk. */
  2231. typedef struct {
  2232. uint32_t magic_;
  2233. /** The time at which we next plan to write the state to the disk. Equal to
  2234. * TIME_MAX if there are no savable changes, 0 if there are changes that
  2235. * should be saved right away. */
  2236. time_t next_write;
  2237. /** When was the state last written to disk? */
  2238. time_t LastWritten;
  2239. /** Fields for accounting bandwidth use. */
  2240. time_t AccountingIntervalStart;
  2241. uint64_t AccountingBytesReadInInterval;
  2242. uint64_t AccountingBytesWrittenInInterval;
  2243. int AccountingSecondsActive;
  2244. int AccountingSecondsToReachSoftLimit;
  2245. time_t AccountingSoftLimitHitAt;
  2246. uint64_t AccountingBytesAtSoftLimit;
  2247. uint64_t AccountingExpectedUsage;
  2248. /** A list of Entry Guard-related configuration lines. (pre-prop271) */
  2249. struct config_line_t *EntryGuards;
  2250. /** A list of guard-related configuration lines. (post-prop271) */
  2251. struct config_line_t *Guard;
  2252. struct config_line_t *TransportProxies;
  2253. /** Cached revision counters for active hidden services on this host */
  2254. struct config_line_t *HidServRevCounter;
  2255. /** These fields hold information on the history of bandwidth usage for
  2256. * servers. The "Ends" fields hold the time when we last updated the
  2257. * bandwidth usage. The "Interval" fields hold the granularity, in seconds,
  2258. * of the entries of Values. The "Values" lists hold decimal string
  2259. * representations of the number of bytes read or written in each
  2260. * interval. The "Maxima" list holds decimal strings describing the highest
  2261. * rate achieved during the interval.
  2262. */
  2263. time_t BWHistoryReadEnds;
  2264. int BWHistoryReadInterval;
  2265. smartlist_t *BWHistoryReadValues;
  2266. smartlist_t *BWHistoryReadMaxima;
  2267. time_t BWHistoryWriteEnds;
  2268. int BWHistoryWriteInterval;
  2269. smartlist_t *BWHistoryWriteValues;
  2270. smartlist_t *BWHistoryWriteMaxima;
  2271. time_t BWHistoryDirReadEnds;
  2272. int BWHistoryDirReadInterval;
  2273. smartlist_t *BWHistoryDirReadValues;
  2274. smartlist_t *BWHistoryDirReadMaxima;
  2275. time_t BWHistoryDirWriteEnds;
  2276. int BWHistoryDirWriteInterval;
  2277. smartlist_t *BWHistoryDirWriteValues;
  2278. smartlist_t *BWHistoryDirWriteMaxima;
  2279. /** Build time histogram */
  2280. struct config_line_t * BuildtimeHistogram;
  2281. int TotalBuildTimes;
  2282. int CircuitBuildAbandonedCount;
  2283. /** What version of Tor wrote this state file? */
  2284. char *TorVersion;
  2285. /** Holds any unrecognized values we found in the state file, in the order
  2286. * in which we found them. */
  2287. struct config_line_t *ExtraLines;
  2288. /** When did we last rotate our onion key? "0" for 'no idea'. */
  2289. time_t LastRotatedOnionKey;
  2290. } or_state_t;
  2291. #define MAX_SOCKS_REPLY_LEN 1024
  2292. #define MAX_SOCKS_ADDR_LEN 256
  2293. #define SOCKS_NO_AUTH 0x00
  2294. #define SOCKS_USER_PASS 0x02
  2295. /** Please open a TCP connection to this addr:port. */
  2296. #define SOCKS_COMMAND_CONNECT 0x01
  2297. /** Please turn this FQDN into an IP address, privately. */
  2298. #define SOCKS_COMMAND_RESOLVE 0xF0
  2299. /** Please turn this IP address into an FQDN, privately. */
  2300. #define SOCKS_COMMAND_RESOLVE_PTR 0xF1
  2301. /* || 0 is for -Wparentheses-equality (-Wall?) appeasement under clang */
  2302. #define SOCKS_COMMAND_IS_CONNECT(c) (((c)==SOCKS_COMMAND_CONNECT) || 0)
  2303. #define SOCKS_COMMAND_IS_RESOLVE(c) ((c)==SOCKS_COMMAND_RESOLVE || \
  2304. (c)==SOCKS_COMMAND_RESOLVE_PTR)
  2305. /********************************* circuitbuild.c **********************/
  2306. /** How many hops does a general-purpose circuit have by default? */
  2307. #define DEFAULT_ROUTE_LEN 3
  2308. /* Circuit Build Timeout "public" structures. */
  2309. /** Precision multiplier for the Bw weights */
  2310. #define BW_WEIGHT_SCALE 10000
  2311. #define BW_MIN_WEIGHT_SCALE 1
  2312. #define BW_MAX_WEIGHT_SCALE INT32_MAX
  2313. /** Total size of the circuit timeout history to accumulate.
  2314. * 1000 is approx 2.5 days worth of continual-use circuits. */
  2315. #define CBT_NCIRCUITS_TO_OBSERVE 1000
  2316. /** Width of the histogram bins in milliseconds */
  2317. #define CBT_BIN_WIDTH ((build_time_t)50)
  2318. /** Number of modes to use in the weighted-avg computation of Xm */
  2319. #define CBT_DEFAULT_NUM_XM_MODES 3
  2320. #define CBT_MIN_NUM_XM_MODES 1
  2321. #define CBT_MAX_NUM_XM_MODES 20
  2322. /** A build_time_t is milliseconds */
  2323. typedef uint32_t build_time_t;
  2324. /**
  2325. * CBT_BUILD_ABANDONED is our flag value to represent a force-closed
  2326. * circuit (Aka a 'right-censored' pareto value).
  2327. */
  2328. #define CBT_BUILD_ABANDONED ((build_time_t)(INT32_MAX-1))
  2329. #define CBT_BUILD_TIME_MAX ((build_time_t)(INT32_MAX))
  2330. /** Save state every 10 circuits */
  2331. #define CBT_SAVE_STATE_EVERY 10
  2332. /* Circuit build times consensus parameters */
  2333. /**
  2334. * How long to wait before actually closing circuits that take too long to
  2335. * build in terms of CDF quantile.
  2336. */
  2337. #define CBT_DEFAULT_CLOSE_QUANTILE 95
  2338. #define CBT_MIN_CLOSE_QUANTILE CBT_MIN_QUANTILE_CUTOFF
  2339. #define CBT_MAX_CLOSE_QUANTILE CBT_MAX_QUANTILE_CUTOFF
  2340. /**
  2341. * How many circuits count as recent when considering if the
  2342. * connection has gone gimpy or changed.
  2343. */
  2344. #define CBT_DEFAULT_RECENT_CIRCUITS 20
  2345. #define CBT_MIN_RECENT_CIRCUITS 3
  2346. #define CBT_MAX_RECENT_CIRCUITS 1000
  2347. /**
  2348. * Maximum count of timeouts that finish the first hop in the past
  2349. * RECENT_CIRCUITS before calculating a new timeout.
  2350. *
  2351. * This tells us whether to abandon timeout history and set
  2352. * the timeout back to whatever circuit_build_times_get_initial_timeout()
  2353. * gives us.
  2354. */
  2355. #define CBT_DEFAULT_MAX_RECENT_TIMEOUT_COUNT (CBT_DEFAULT_RECENT_CIRCUITS*9/10)
  2356. #define CBT_MIN_MAX_RECENT_TIMEOUT_COUNT 3
  2357. #define CBT_MAX_MAX_RECENT_TIMEOUT_COUNT 10000
  2358. /** Minimum circuits before estimating a timeout */
  2359. #define CBT_DEFAULT_MIN_CIRCUITS_TO_OBSERVE 100
  2360. #define CBT_MIN_MIN_CIRCUITS_TO_OBSERVE 1
  2361. #define CBT_MAX_MIN_CIRCUITS_TO_OBSERVE 10000
  2362. /** Cutoff percentile on the CDF for our timeout estimation. */
  2363. #define CBT_DEFAULT_QUANTILE_CUTOFF 80
  2364. #define CBT_MIN_QUANTILE_CUTOFF 10
  2365. #define CBT_MAX_QUANTILE_CUTOFF 99
  2366. double circuit_build_times_quantile_cutoff(void);
  2367. /** How often in seconds should we build a test circuit */
  2368. #define CBT_DEFAULT_TEST_FREQUENCY 10
  2369. #define CBT_MIN_TEST_FREQUENCY 1
  2370. #define CBT_MAX_TEST_FREQUENCY INT32_MAX
  2371. /** Lowest allowable value for CircuitBuildTimeout in milliseconds */
  2372. #define CBT_DEFAULT_TIMEOUT_MIN_VALUE (1500)
  2373. #define CBT_MIN_TIMEOUT_MIN_VALUE 500
  2374. #define CBT_MAX_TIMEOUT_MIN_VALUE INT32_MAX
  2375. /** Initial circuit build timeout in milliseconds */
  2376. #define CBT_DEFAULT_TIMEOUT_INITIAL_VALUE (60*1000)
  2377. #define CBT_MIN_TIMEOUT_INITIAL_VALUE CBT_MIN_TIMEOUT_MIN_VALUE
  2378. #define CBT_MAX_TIMEOUT_INITIAL_VALUE INT32_MAX
  2379. int32_t circuit_build_times_initial_timeout(void);
  2380. #if CBT_DEFAULT_MAX_RECENT_TIMEOUT_COUNT < CBT_MIN_MAX_RECENT_TIMEOUT_COUNT
  2381. #error "RECENT_CIRCUITS is set too low."
  2382. #endif
  2383. typedef struct circuit_build_times_s circuit_build_times_t;
  2384. /********************************* config.c ***************************/
  2385. /********************************* connection_edge.c *************************/
  2386. /** Enumerates possible origins of a client-side address mapping. */
  2387. typedef enum {
  2388. /** We're remapping this address because the controller told us to. */
  2389. ADDRMAPSRC_CONTROLLER,
  2390. /** We're remapping this address because of an AutomapHostsOnResolve
  2391. * configuration. */
  2392. ADDRMAPSRC_AUTOMAP,
  2393. /** We're remapping this address because our configuration (via torrc, the
  2394. * command line, or a SETCONF command) told us to. */
  2395. ADDRMAPSRC_TORRC,
  2396. /** We're remapping this address because we have TrackHostExit configured,
  2397. * and we want to remember to use the same exit next time. */
  2398. ADDRMAPSRC_TRACKEXIT,
  2399. /** We're remapping this address because we got a DNS resolution from a
  2400. * Tor server that told us what its value was. */
  2401. ADDRMAPSRC_DNS,
  2402. /** No remapping has occurred. This isn't a possible value for an
  2403. * addrmap_entry_t; it's used as a null value when we need to answer "Why
  2404. * did this remapping happen." */
  2405. ADDRMAPSRC_NONE
  2406. } addressmap_entry_source_t;
  2407. #define addressmap_entry_source_bitfield_t ENUM_BF(addressmap_entry_source_t)
  2408. #define WRITE_STATS_INTERVAL (24*60*60)
  2409. /********************************* dirvote.c ************************/
  2410. typedef struct vote_timing_t vote_timing_t;
  2411. /********************************* microdesc.c *************************/
  2412. typedef struct microdesc_cache_t microdesc_cache_t;
  2413. /********************************* rendcommon.c ***************************/
  2414. typedef struct rend_authorized_client_t rend_authorized_client_t;
  2415. typedef struct rend_encoded_v2_service_descriptor_t
  2416. rend_encoded_v2_service_descriptor_t;
  2417. /** The maximum number of non-circuit-build-timeout failures a hidden
  2418. * service client will tolerate while trying to build a circuit to an
  2419. * introduction point. See also rend_intro_point_t.unreachable_count. */
  2420. #define MAX_INTRO_POINT_REACHABILITY_FAILURES 5
  2421. /** The minimum and maximum number of distinct INTRODUCE2 cells which a
  2422. * hidden service's introduction point will receive before it begins to
  2423. * expire. */
  2424. #define INTRO_POINT_MIN_LIFETIME_INTRODUCTIONS 16384
  2425. /* Double the minimum value so the interval is [min, min * 2]. */
  2426. #define INTRO_POINT_MAX_LIFETIME_INTRODUCTIONS \
  2427. (INTRO_POINT_MIN_LIFETIME_INTRODUCTIONS * 2)
  2428. /** The minimum number of seconds that an introduction point will last
  2429. * before expiring due to old age. (If it receives
  2430. * INTRO_POINT_LIFETIME_INTRODUCTIONS INTRODUCE2 cells, it may expire
  2431. * sooner.)
  2432. *
  2433. * XXX Should this be configurable? */
  2434. #define INTRO_POINT_LIFETIME_MIN_SECONDS (18*60*60)
  2435. /** The maximum number of seconds that an introduction point will last
  2436. * before expiring due to old age.
  2437. *
  2438. * XXX Should this be configurable? */
  2439. #define INTRO_POINT_LIFETIME_MAX_SECONDS (24*60*60)
  2440. /** The maximum number of circuit creation retry we do to an intro point
  2441. * before giving up. We try to reuse intro point that fails during their
  2442. * lifetime so this is a hard limit on the amount of time we do that. */
  2443. #define MAX_INTRO_POINT_CIRCUIT_RETRIES 3
  2444. typedef struct rend_intro_point_t rend_intro_point_t;
  2445. typedef struct rend_service_descriptor_t rend_service_descriptor_t;
  2446. /********************************* routerlist.c ***************************/
  2447. typedef struct dir_server_t dir_server_t;
  2448. #define RELAY_REQUIRED_MIN_BANDWIDTH (75*1024)
  2449. #define BRIDGE_REQUIRED_MIN_BANDWIDTH (50*1024)
  2450. #define ROUTER_MAX_DECLARED_BANDWIDTH INT32_MAX
  2451. /* Flags for pick_directory_server() and pick_trusteddirserver(). */
  2452. /** Flag to indicate that we should not automatically be willing to use
  2453. * ourself to answer a directory request.
  2454. * Passed to router_pick_directory_server (et al).*/
  2455. #define PDS_ALLOW_SELF (1<<0)
  2456. /** Flag to indicate that if no servers seem to be up, we should mark all
  2457. * directory servers as up and try again.
  2458. * Passed to router_pick_directory_server (et al).*/
  2459. #define PDS_RETRY_IF_NO_SERVERS (1<<1)
  2460. /** Flag to indicate that we should not exclude directory servers that
  2461. * our ReachableAddress settings would exclude. This usually means that
  2462. * we're going to connect to the server over Tor, and so we don't need to
  2463. * worry about our firewall telling us we can't.
  2464. * Passed to router_pick_directory_server (et al).*/
  2465. #define PDS_IGNORE_FASCISTFIREWALL (1<<2)
  2466. /** Flag to indicate that we should not use any directory authority to which
  2467. * we have an existing directory connection for downloading server descriptors
  2468. * or extrainfo documents.
  2469. *
  2470. * Passed to router_pick_directory_server (et al)
  2471. */
  2472. #define PDS_NO_EXISTING_SERVERDESC_FETCH (1<<3)
  2473. /** Flag to indicate that we should not use any directory authority to which
  2474. * we have an existing directory connection for downloading microdescs.
  2475. *
  2476. * Passed to router_pick_directory_server (et al)
  2477. */
  2478. #define PDS_NO_EXISTING_MICRODESC_FETCH (1<<4)
  2479. typedef struct tor_version_t tor_version_t;
  2480. #endif /* !defined(TOR_OR_H) */