or.h 133 KB

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