or.h 106 KB

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