or.h 128 KB

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