or.h 102 KB

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