or.h 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746
  1. /* Copyright 2001 Matej Pfajfar.
  2. * Copyright 2001-2004 Roger Dingledine.
  3. * Copyright 2004 Roger Dingledine, Nick Mathewson. */
  4. /* See LICENSE for licensing information */
  5. /* $Id$ */
  6. /**
  7. * \file or.h
  8. *
  9. * \brief Master header file for Tor-specific functionality.
  10. */
  11. #ifndef __OR_H
  12. #define __OR_H
  13. #define OR_H_ID "$Id$"
  14. #include "orconfig.h"
  15. #ifdef MS_WINDOWS
  16. #define WIN32_WINNT 0x400
  17. #define _WIN32_WINNT 0x400
  18. #define WIN32_LEAN_AND_MEAN
  19. #endif
  20. #include <stdio.h>
  21. #include <stdlib.h>
  22. #include <limits.h>
  23. #ifdef HAVE_UNISTD_H
  24. #include <unistd.h>
  25. #endif
  26. #ifdef HAVE_STRING_H
  27. #include <string.h>
  28. #endif
  29. #ifdef HAVE_SIGNAL_H
  30. #include <signal.h>
  31. #endif
  32. #ifdef HAVE_NETDB_H
  33. #include <netdb.h>
  34. #endif
  35. #ifdef HAVE_CTYPE_H
  36. #include <ctype.h>
  37. #endif
  38. #include "../common/torint.h"
  39. #ifdef HAVE_INTTYPES_H
  40. #include <inttypes.h>
  41. #endif
  42. #ifdef HAVE_SYS_PARAM_H
  43. #include <sys/param.h> /* FreeBSD needs this to know what version it is */
  44. #endif
  45. #ifdef HAVE_SYS_LIMITS_H
  46. #include <sys/limits.h>
  47. #endif
  48. #ifdef HAVE_MACHINE_LIMITS_H
  49. #ifndef __FreeBSD__
  50. /* FreeBSD has a bug where it complains that this file is obsolete,
  51. and I should migrate to using sys/limits. It complains even when
  52. I include both. */
  53. #include <machine/limits.h>
  54. #endif
  55. #endif
  56. #ifdef HAVE_SYS_TYPES_H
  57. #include <sys/types.h> /* Must be included before sys/stat.h for Ultrix */
  58. #endif
  59. #ifdef HAVE_SYS_WAIT_H
  60. #include <sys/wait.h>
  61. #endif
  62. #ifdef HAVE_SYS_FCNTL_H
  63. #include <sys/fcntl.h>
  64. #endif
  65. #ifdef HAVE_FCNTL_H
  66. #include <fcntl.h>
  67. #endif
  68. #ifdef HAVE_SYS_IOCTL_H
  69. #include <sys/ioctl.h>
  70. #endif
  71. #ifdef HAVE_SYS_SOCKET_H
  72. #include <sys/socket.h>
  73. #endif
  74. #ifdef HAVE_SYS_TIME_H
  75. #include <sys/time.h>
  76. #endif
  77. #ifdef HAVE_SYS_STAT_H
  78. #include <sys/stat.h>
  79. #endif
  80. #ifdef HAVE_NETINET_IN_H
  81. #include <netinet/in.h>
  82. #endif
  83. #ifdef HAVE_ARPA_INET_H
  84. #include <arpa/inet.h>
  85. #endif
  86. #ifdef HAVE_ERRNO_H
  87. #include <errno.h>
  88. #endif
  89. #ifdef HAVE_ASSERT_H
  90. #include <assert.h>
  91. #endif
  92. #ifdef HAVE_TIME_H
  93. #include <time.h>
  94. #endif
  95. #ifdef MS_WINDOWS
  96. #if (_MSC_VER <= 1300)
  97. #include <winsock.h>
  98. #else
  99. #include <winsock2.h>
  100. #include <ws2tcpip.h>
  101. #endif
  102. #endif
  103. #ifdef MS_WINDOWS
  104. #include <io.h>
  105. #include <process.h>
  106. #include <direct.h>
  107. #include <windows.h>
  108. #define snprintf _snprintf
  109. #endif
  110. #ifdef HAVE_EVENT_H
  111. #include <event.h>
  112. #else
  113. #error "Tor requires libevent to build."
  114. #endif
  115. #include "../common/crypto.h"
  116. #include "../common/tortls.h"
  117. #include "../common/log.h"
  118. #include "../common/compat.h"
  119. #include "../common/container.h"
  120. #include "../common/util.h"
  121. #include "../common/torgzip.h"
  122. /** Upper bound on maximum simultaneous connections; can be lowered by
  123. * config file. */
  124. #define MAXCONNECTIONS 10000
  125. #define DEFAULT_BANDWIDTH_OP (1024 * 1000)
  126. #define MAX_NICKNAME_LEN 19
  127. /* Hex digest plus dollar sign. */
  128. #define MAX_HEX_NICKNAME_LEN (HEX_DIGEST_LEN+1)
  129. #define MAX_DIR_SIZE 500000
  130. #ifdef TOR_PERF
  131. /** How long do we keep DNS cache entries before purging them? */
  132. #define MAX_DNS_ENTRY_AGE (150*60)
  133. #else
  134. #define MAX_DNS_ENTRY_AGE (15*60)
  135. #endif
  136. /** How often do we rotate onion keys? */
  137. #define MIN_ONION_KEY_LIFETIME (7*24*60*60) /* once a week */
  138. /** How often do we rotate TLS contexts? */
  139. #define MAX_SSL_KEY_LIFETIME (120*60)
  140. /** How old do we allow a router to get before removing it, either
  141. * from the descriptor list (for dirservers) or the router list (for others)?
  142. * In seconds. */
  143. #define ROUTER_MAX_AGE (60*60*24)
  144. typedef enum {
  145. CIRC_ID_TYPE_LOWER=0,
  146. CIRC_ID_TYPE_HIGHER=1
  147. } circ_id_type_t;
  148. #define _CONN_TYPE_MIN 3
  149. /** Type for sockets listening for OR connections. */
  150. #define CONN_TYPE_OR_LISTENER 3
  151. /** Type for OR-to-OR or OP-to-OR connections. */
  152. #define CONN_TYPE_OR 4
  153. /** Type for connections from final OR to chosen destination. */
  154. #define CONN_TYPE_EXIT 5
  155. /** Type for sockets listening for SOCKS connections. */
  156. #define CONN_TYPE_AP_LISTENER 6
  157. /** Type for SOCKS connections to OP. */
  158. #define CONN_TYPE_AP 7
  159. /** Type for sockets listening for HTTP connections to the directory server. */
  160. #define CONN_TYPE_DIR_LISTENER 8
  161. /** Type for HTTP connections to the directory server. */
  162. #define CONN_TYPE_DIR 9
  163. /** Type for connections to local dnsworker processes. */
  164. #define CONN_TYPE_DNSWORKER 10
  165. /** Type for connections to local cpuworker processes. */
  166. #define CONN_TYPE_CPUWORKER 11
  167. /** Type for listenting for connections from user interface process */
  168. #define CONN_TYPE_CONTROL_LISTENER 12
  169. /** Type for connections from user interface process */
  170. #define CONN_TYPE_CONTROL 13
  171. #define _CONN_TYPE_MAX 13
  172. #define CONN_IS_EDGE(x) ((x)->type == CONN_TYPE_EXIT || (x)->type == CONN_TYPE_AP)
  173. /** State for any listener connection. */
  174. #define LISTENER_STATE_READY 0
  175. #define _DNSWORKER_STATE_MIN 1
  176. /** State for a connection to a dnsworker process that's idle. */
  177. #define DNSWORKER_STATE_IDLE 1
  178. /** State for a connection to a dnsworker process that's resolving a hostname. */
  179. #define DNSWORKER_STATE_BUSY 2
  180. #define _DNSWORKER_STATE_MAX 2
  181. #define _CPUWORKER_STATE_MIN 1
  182. /** State for a connection to a cpuworker process that's idle. */
  183. #define CPUWORKER_STATE_IDLE 1
  184. /** State for a connection to a cpuworker process that's processing a
  185. * handshake. */
  186. #define CPUWORKER_STATE_BUSY_ONION 2
  187. #define _CPUWORKER_STATE_MAX 2
  188. #define CPUWORKER_TASK_ONION CPUWORKER_STATE_BUSY_ONION
  189. #define _OR_CONN_STATE_MIN 1
  190. /** State for a connection to an OR: waiting for connect() to finish. */
  191. #define OR_CONN_STATE_CONNECTING 1
  192. /** State for a connection to an OR: SSL is handshaking, not done yet. */
  193. #define OR_CONN_STATE_HANDSHAKING 2
  194. /** State for a connection to an OR: Ready to send/receive cells. */
  195. #define OR_CONN_STATE_OPEN 3
  196. #define _OR_CONN_STATE_MAX 3
  197. #define _EXIT_CONN_STATE_MIN 1
  198. /** State for an exit connection: waiting for response from dns farm. */
  199. #define EXIT_CONN_STATE_RESOLVING 1
  200. /** State for an exit connection: waiting for connect() to finish. */
  201. #define EXIT_CONN_STATE_CONNECTING 2
  202. /** State for an exit connection: open and ready to transmit data. */
  203. #define EXIT_CONN_STATE_OPEN 3
  204. /** State for an exit connection: waiting to be removed. */
  205. #define EXIT_CONN_STATE_RESOLVEFAILED 4
  206. #define _EXIT_CONN_STATE_MAX 4
  207. #if 0
  208. #define EXIT_CONN_STATE_CLOSE 3 /* flushing the buffer, then will close */
  209. #define EXIT_CONN_STATE_CLOSE_WAIT 4 /* have sent a destroy, awaiting a confirmation */
  210. #endif
  211. /* the AP state values must be disjoint from the EXIT state values */
  212. #define _AP_CONN_STATE_MIN 5
  213. /** State for a SOCKS connection: waiting for SOCKS request. */
  214. #define AP_CONN_STATE_SOCKS_WAIT 5
  215. /** State for a SOCKS connection: got a y.onion URL; waiting to receive
  216. * rendezvous rescriptor. */
  217. #define AP_CONN_STATE_RENDDESC_WAIT 6
  218. /** State for a SOCKS connection: waiting for a completed circuit. */
  219. #define AP_CONN_STATE_CIRCUIT_WAIT 7
  220. /** State for a SOCKS connection: sent BEGIN, waiting for CONNECTED. */
  221. #define AP_CONN_STATE_CONNECT_WAIT 8
  222. /** State for a SOCKS connection: send RESOLVE, waiting for RESOLVED. */
  223. #define AP_CONN_STATE_RESOLVE_WAIT 9
  224. /** State for a SOCKS connection: ready to send and receive. */
  225. #define AP_CONN_STATE_OPEN 10
  226. #define _AP_CONN_STATE_MAX 10
  227. #define _DIR_CONN_STATE_MIN 1
  228. /** State for connection to directory server: waiting for connect(). */
  229. #define DIR_CONN_STATE_CONNECTING 1
  230. /** State for connection to directory server: sending HTTP request. */
  231. #define DIR_CONN_STATE_CLIENT_SENDING 2
  232. /** State for connection to directory server: reading HTTP response. */
  233. #define DIR_CONN_STATE_CLIENT_READING 3
  234. /** State for connection at directory server: waiting for HTTP request. */
  235. #define DIR_CONN_STATE_SERVER_COMMAND_WAIT 4
  236. /** State for connection at directory server: sending HTTP response. */
  237. #define DIR_CONN_STATE_SERVER_WRITING 5
  238. #define _DIR_CONN_STATE_MAX 5
  239. #define _CONTROL_CONN_STATE_MIN 1
  240. #define CONTROL_CONN_STATE_OPEN 1
  241. #define CONTROL_CONN_STATE_NEEDAUTH 2
  242. #define _CONTROL_CONN_STATE_MAX 2
  243. #define _DIR_PURPOSE_MIN 1
  244. /** Purpose for connection to directory server: download a directory. */
  245. #define DIR_PURPOSE_FETCH_DIR 1
  246. /** Purpose for connection to directory server: download just the list
  247. * of running routers. */
  248. #define DIR_PURPOSE_FETCH_RUNNING_LIST 2
  249. /** Purpose for connection to directory server: download a rendezvous
  250. * descriptor. */
  251. #define DIR_PURPOSE_FETCH_RENDDESC 3
  252. /** Purpose for connection to directory server: set after a rendezvous
  253. * descriptor is downloaded. */
  254. #define DIR_PURPOSE_HAS_FETCHED_RENDDESC 4
  255. /** Purpose for connection to directory server: upload a server descriptor. */
  256. #define DIR_PURPOSE_UPLOAD_DIR 5
  257. /** Purpose for connection to directory server: upload a rendezvous
  258. * descriptor. */
  259. #define DIR_PURPOSE_UPLOAD_RENDDESC 6
  260. /** Purpose for connection at a directory server. */
  261. #define DIR_PURPOSE_SERVER 7
  262. #define _DIR_PURPOSE_MAX 7
  263. #define _EXIT_PURPOSE_MIN 1
  264. #define EXIT_PURPOSE_CONNECT 1
  265. #define EXIT_PURPOSE_RESOLVE 2
  266. #define _EXIT_PURPOSE_MAX 2
  267. /** Circuit state: I'm the OP, still haven't done all my handshakes. */
  268. #define CIRCUIT_STATE_BUILDING 0
  269. /** Circuit state: Waiting to process the onionskin. */
  270. #define CIRCUIT_STATE_ONIONSKIN_PENDING 1
  271. /** Circuit state: I'd like to deliver a create, but my n_conn is still connecting. */
  272. #define CIRCUIT_STATE_OR_WAIT 2
  273. /** Circuit state: onionskin(s) processed, ready to send/receive cells. */
  274. #define CIRCUIT_STATE_OPEN 3
  275. #define _CIRCUIT_PURPOSE_MIN 1
  276. /* these circuits were initiated elsewhere */
  277. #define _CIRCUIT_PURPOSE_OR_MIN 1
  278. /** OR-side circuit purpose: normal circuit, at OR. */
  279. #define CIRCUIT_PURPOSE_OR 1
  280. /** OR-side circuit purpose: At OR, from Bob, waiting for intro from Alices. */
  281. #define CIRCUIT_PURPOSE_INTRO_POINT 2
  282. /** OR-side circuit purpose: At OR, from Alice, waiting for Bob. */
  283. #define CIRCUIT_PURPOSE_REND_POINT_WAITING 3
  284. /** OR-side circuit purpose: At OR, both circuits have this purpose. */
  285. #define CIRCUIT_PURPOSE_REND_ESTABLISHED 4
  286. #define _CIRCUIT_PURPOSE_OR_MAX 4
  287. /* these circuits originate at this node */
  288. /* here's how circ client-side purposes work:
  289. * normal circuits are C_GENERAL.
  290. * circuits that are c_introducing are either on their way to
  291. * becoming open, or they are open and waiting for a
  292. * suitable rendcirc before they send the intro.
  293. * circuits that are c_introduce_ack_wait have sent the intro,
  294. * but haven't gotten a response yet.
  295. * circuits that are c_establish_rend are either on their way
  296. * to becoming open, or they are open and have sent the
  297. * establish_rendezvous cell but haven't received an ack.
  298. * circuits that are c_rend_ready are open and have received a
  299. * rend ack, but haven't heard from bob yet. if they have a
  300. * buildstate->pending_final_cpath then they're expecting a
  301. * cell from bob, else they're not.
  302. * circuits that are c_rend_ready_intro_acked are open, and
  303. * some intro circ has sent its intro and received an ack.
  304. * circuits that are c_rend_joined are open, have heard from
  305. * bob, and are talking to him.
  306. */
  307. /** Client-side circuit purpose: Normal circuit, with cpath. */
  308. #define CIRCUIT_PURPOSE_C_GENERAL 5
  309. /** Client-side circuit purpose: at Alice, connecting to intro point. */
  310. #define CIRCUIT_PURPOSE_C_INTRODUCING 6
  311. /** Client-side circuit purpose: at Alice, sent INTRODUCE1 to intro point, waiting for ACK/NAK. */
  312. #define CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT 7
  313. /** Client-side circuit purpose: at Alice, introduced and acked, closing. */
  314. #define CIRCUIT_PURPOSE_C_INTRODUCE_ACKED 8
  315. /** Client-side circuit purpose: at Alice, waiting for ack. */
  316. #define CIRCUIT_PURPOSE_C_ESTABLISH_REND 9
  317. /** Client-side circuit purpose: at Alice, waiting for Bob. */
  318. #define CIRCUIT_PURPOSE_C_REND_READY 10
  319. /** Client-side circuit purpose: at Alice, waiting for Bob, INTRODUCE
  320. * has been acknowledged. */
  321. #define CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED 11
  322. /** Client-side circuit purpose: at Alice, rendezvous established. */
  323. #define CIRCUIT_PURPOSE_C_REND_JOINED 12
  324. /** Hidden-service-side circuit purpose: at Bob, waiting for introductions. */
  325. #define CIRCUIT_PURPOSE_S_ESTABLISH_INTRO 13
  326. /** Hidden-service-side circuit purpose: at Bob, successfully established
  327. * intro. */
  328. #define CIRCUIT_PURPOSE_S_INTRO 14
  329. /** Hidden-service-side circuit purpose: at Bob, connecting to rend point. */
  330. #define CIRCUIT_PURPOSE_S_CONNECT_REND 15
  331. /** Hidden-service-side circuit purpose: at Bob, rendezvous established. */
  332. #define CIRCUIT_PURPOSE_S_REND_JOINED 16
  333. #define _CIRCUIT_PURPOSE_MAX 16
  334. /** True iff the circuit purpose <b>p</b> is for a circuit at the OP
  335. * that this OP has originated. */
  336. #define CIRCUIT_PURPOSE_IS_ORIGIN(p) ((p)>_CIRCUIT_PURPOSE_OR_MAX)
  337. #define CIRCUIT_IS_ORIGIN(c) (CIRCUIT_PURPOSE_IS_ORIGIN((c)->purpose))
  338. #define RELAY_COMMAND_BEGIN 1
  339. #define RELAY_COMMAND_DATA 2
  340. #define RELAY_COMMAND_END 3
  341. #define RELAY_COMMAND_CONNECTED 4
  342. #define RELAY_COMMAND_SENDME 5
  343. #define RELAY_COMMAND_EXTEND 6
  344. #define RELAY_COMMAND_EXTENDED 7
  345. #define RELAY_COMMAND_TRUNCATE 8
  346. #define RELAY_COMMAND_TRUNCATED 9
  347. #define RELAY_COMMAND_DROP 10
  348. #define RELAY_COMMAND_RESOLVE 11
  349. #define RELAY_COMMAND_RESOLVED 12
  350. #define RELAY_COMMAND_ESTABLISH_INTRO 32
  351. #define RELAY_COMMAND_ESTABLISH_RENDEZVOUS 33
  352. #define RELAY_COMMAND_INTRODUCE1 34
  353. #define RELAY_COMMAND_INTRODUCE2 35
  354. #define RELAY_COMMAND_RENDEZVOUS1 36
  355. #define RELAY_COMMAND_RENDEZVOUS2 37
  356. #define RELAY_COMMAND_INTRO_ESTABLISHED 38
  357. #define RELAY_COMMAND_RENDEZVOUS_ESTABLISHED 39
  358. #define RELAY_COMMAND_INTRODUCE_ACK 40
  359. #define _MIN_END_STREAM_REASON 1
  360. #define END_STREAM_REASON_MISC 1
  361. #define END_STREAM_REASON_RESOLVEFAILED 2
  362. #define END_STREAM_REASON_CONNECTFAILED 3
  363. #define END_STREAM_REASON_EXITPOLICY 4
  364. #define END_STREAM_REASON_DESTROY 5
  365. #define END_STREAM_REASON_DONE 6
  366. #define END_STREAM_REASON_TIMEOUT 7
  367. #define _MAX_END_STREAM_REASON 7
  368. #define RESOLVED_TYPE_IPV4 4
  369. #define RESOLVED_TYPE_IPV6 6
  370. #define RESOLVED_TYPE_ERROR_TRANSIENT 0xF0
  371. #define RESOLVED_TYPE_ERROR 0xF1
  372. /** Length of 'y' portion of 'y.onion' URL. */
  373. #define REND_SERVICE_ID_LEN 16
  374. #define CELL_DIRECTION_IN 1
  375. #define CELL_DIRECTION_OUT 2
  376. #ifdef TOR_PERF
  377. #define CIRCWINDOW_START 10000
  378. #define CIRCWINDOW_INCREMENT 1000
  379. #define STREAMWINDOW_START 5000
  380. #define STREAMWINDOW_INCREMENT 500
  381. #else
  382. #define CIRCWINDOW_START 1000
  383. #define CIRCWINDOW_INCREMENT 100
  384. #define STREAMWINDOW_START 500
  385. #define STREAMWINDOW_INCREMENT 50
  386. #endif
  387. /* cell commands */
  388. #define CELL_PADDING 0
  389. #define CELL_CREATE 1
  390. #define CELL_CREATED 2
  391. #define CELL_RELAY 3
  392. #define CELL_DESTROY 4
  393. /* people behind fascist firewalls use only these ports */
  394. #define REQUIRED_FIREWALL_DIRPORT 80
  395. #define REQUIRED_FIREWALL_ORPORT 443
  396. /* legal characters in a nickname */
  397. #define LEGAL_NICKNAME_CHARACTERS "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
  398. /** Name to use in client TLS certificates if no nickname is given.*/
  399. #define DEFAULT_CLIENT_NICKNAME "client"
  400. #define SOCKS4_NETWORK_LEN 8
  401. /*
  402. * Relay payload:
  403. * Relay command [1 byte]
  404. * Recognized [2 bytes]
  405. * Stream ID [2 bytes]
  406. * Partial SHA-1 [4 bytes]
  407. * Length [2 bytes]
  408. * Relay payload [498 bytes]
  409. */
  410. #define CELL_PAYLOAD_SIZE 509
  411. #define CELL_NETWORK_SIZE 512
  412. #define RELAY_HEADER_SIZE (1+2+2+4+2)
  413. #define RELAY_PAYLOAD_SIZE (CELL_PAYLOAD_SIZE-RELAY_HEADER_SIZE)
  414. /** Parsed onion routing cell. All communication from OP-to-OR, or from
  415. * OR-to-OR, is via cells. */
  416. typedef struct {
  417. uint16_t circ_id; /**< Circuit which received the cell. */
  418. unsigned char command; /**< Type of the cell: one of PADDING, CREATE, RELAY,
  419. * or DESTROY. */
  420. unsigned char payload[CELL_PAYLOAD_SIZE]; /**< Cell body. */
  421. } cell_t;
  422. /** Beginning of a RELAY cell payload. */
  423. typedef struct {
  424. uint8_t command; /**< The end-to-end relay command. */
  425. uint16_t recognized; /**< Used to tell whether cell is for us. */
  426. uint16_t stream_id; /**< Which stream is this cell associated with? */
  427. char integrity[4]; /**< Used to tell whether cell is corrupted. */
  428. uint16_t length; /**< How long is the payload body? */
  429. } relay_header_t;
  430. typedef struct buf_t buf_t;
  431. typedef struct socks_request_t socks_request_t;
  432. #define CONNECTION_MAGIC 0x7C3C304Eu
  433. /** Description of a connection to another host or process, and associated
  434. * data. */
  435. struct connection_t {
  436. uint32_t magic; /**< For memory debugging: must equal CONNECTION_MAGIC. */
  437. uint8_t type; /**< What kind of connection is this? */
  438. uint8_t state; /**< Current state of this connection. */
  439. uint8_t purpose; /**< Only used for DIR types currently. */
  440. uint8_t wants_to_read; /**< Boolean: should we start reading again once
  441. * the bandwidth throttler allows it?
  442. */
  443. uint8_t wants_to_write; /**< Boolean: should we start writing again once
  444. * the bandwidth throttler allows reads?
  445. */
  446. int s; /**< Our socket; -1 if this connection is closed. */
  447. int poll_index; /* XXXX rename. */
  448. struct event *read_event; /**< libevent event structure. */
  449. struct event *write_event; /**< libevent event structure. */
  450. int marked_for_close; /**< Boolean: should we close this conn on the next
  451. * iteration of the main loop?
  452. */
  453. const char *marked_for_close_file; /**< For debugging: in which file were
  454. * we marked for close? */
  455. int hold_open_until_flushed; /**< Despite this connection's being marked
  456. * for close, do we flush it before closing it?
  457. */
  458. buf_t *inbuf; /**< Buffer holding data read over this connection. */
  459. int inbuf_reached_eof; /**< Boolean: did read() return 0 on this conn? */
  460. time_t timestamp_lastread; /**< When was the last time poll() said we could read? */
  461. buf_t *outbuf; /**< Buffer holding data to write over this connection. */
  462. size_t outbuf_flushlen; /**< How much data should we try to flush from the
  463. * outbuf? */
  464. time_t timestamp_lastwritten; /**< When was the last time poll() said we could write? */
  465. time_t timestamp_created; /**< When was this connection_t created? */
  466. uint32_t addr; /**< IP of the other side of the connection; used to identify
  467. * routers, along with port. */
  468. uint16_t port; /**< If non-zero, port on the other end
  469. * of the connection. */
  470. char *address; /**< FQDN (or IP) of the guy on the other end.
  471. * strdup into this, because free_connection frees it.
  472. */
  473. crypto_pk_env_t *identity_pkey; /**< Public RSA key for the other side's
  474. * signing key. */
  475. char identity_digest[DIGEST_LEN]; /**< Hash of identity_pkey */
  476. char *nickname; /**< Nickname of OR on other side (if any). */
  477. /** Nickname of planned exit node -- to be used with .exit support. */
  478. char *chosen_exit_name;
  479. /* Used only by OR connections: */
  480. tor_tls *tls; /**< TLS connection state (OR only.) */
  481. uint16_t next_circ_id; /**< Which circ_id do we try to use next on
  482. * this connection? This is always in the
  483. * range 0..1<<15-1. (OR only.)*/
  484. /* bandwidth and receiver_bucket only used by ORs in OPEN state: */
  485. int bandwidth; /**< Connection bandwidth. (OPEN ORs only.) */
  486. int receiver_bucket; /**< When this hits 0, stop receiving. Every second we
  487. * add 'bandwidth' to this, capping it at 10*bandwidth.
  488. * (OPEN ORs only)
  489. */
  490. circ_id_type_t circ_id_type; /**< When we send CREATE cells along this
  491. * connection, which half of the space should
  492. * we use? */
  493. /* Used only by DIR and AP connections: */
  494. char rend_query[REND_SERVICE_ID_LEN+1]; /**< What rendezvous service are we
  495. * querying for? (DIR/AP only) */
  496. /* Used only by edge connections: */
  497. size_t stream_size; /**< Used for debugging. */
  498. uint16_t stream_id;
  499. struct connection_t *next_stream; /**< Points to the next stream at this
  500. * edge, if any (Edge only). */
  501. struct crypt_path_t *cpath_layer; /**< A pointer to which node in the circ
  502. * this conn exits at. (Edge only.) */
  503. int package_window; /**< How many more relay cells can i send into the
  504. * circuit? (Edge only.) */
  505. int deliver_window; /**< How many more relay cells can end at me? (Edge
  506. * only.) */
  507. int done_sending; /**< For half-open connections; not used currently. */
  508. int done_receiving; /**< For half-open connections; not used currently. */
  509. char has_sent_end; /**< For debugging: set once we've set the stream end,
  510. and check in circuit_about_to_close_connection(). */
  511. /* Used only by AP connections */
  512. socks_request_t *socks_request; /**< SOCKS structure describing request (AP
  513. * only.) */
  514. /* Used only by control connections */
  515. uint32_t event_mask;
  516. };
  517. typedef struct connection_t connection_t;
  518. #define ADDR_POLICY_ACCEPT 1
  519. #define ADDR_POLICY_REJECT 2
  520. /** A linked list of policy rules */
  521. typedef struct addr_policy_t {
  522. char policy_type; /**< One of ADDR_POLICY_ACCEPT or ADDR_POLICY_REJECT. */
  523. char *string; /**< String representation of this rule. */
  524. uint32_t addr; /**< Base address to accept or reject. */
  525. uint32_t msk; /**< Accept/reject all addresses <b>a</b> such that
  526. * a &amp; msk == <b>addr</b> &amp; msk . */
  527. uint16_t prt_min; /**< Lowest port number to accept/reject. */
  528. uint16_t prt_max; /**< Highest port number to accept/reject. */
  529. struct addr_policy_t *next; /**< Next rule in list. */
  530. } addr_policy_t;
  531. /** Information about another onion router in the network. */
  532. typedef struct {
  533. char *address; /**< Location of OR: either a hostname or an IP address. */
  534. char *nickname; /**< Human-readable OR name. */
  535. uint32_t addr; /**< IPv4 address of OR, in host order. */
  536. uint16_t or_port; /**< Port for OR-to-OR and OP-to-OR connections. */
  537. uint16_t dir_port; /**< Port for HTTP directory connections. */
  538. time_t published_on; /**< When was the information in this routerinfo_t
  539. * published? */
  540. crypto_pk_env_t *onion_pkey; /**< Public RSA key for onions. */
  541. crypto_pk_env_t *identity_pkey; /**< Public RSA key for signing. */
  542. char identity_digest[DIGEST_LEN]; /**< Digest of identity key */
  543. char *platform; /**< What software/operating system is this OR using? */
  544. /* link info */
  545. uint32_t bandwidthrate; /**< How many bytes does this OR add to its token
  546. * bucket per second? */
  547. uint32_t bandwidthburst; /**< How large is this OR's token bucket? */
  548. /** How many bytes/s is this router known to handle? */
  549. uint32_t bandwidthcapacity;
  550. addr_policy_t *exit_policy; /**< What streams will this OR permit
  551. * to exit? */
  552. long uptime; /**< How many seconds the router claims to have been up */
  553. /* local info */
  554. int is_running; /**< As far as we know, is this OR currently running? */
  555. time_t status_set_at; /**< When did we last update is_running? */
  556. int is_verified; /**< Has a trusted dirserver validated this OR? */
  557. smartlist_t *declared_family; /**< Nicknames of router which this router
  558. * claims are its family. */
  559. } routerinfo_t;
  560. /** Contents of a directory of onion routers. */
  561. typedef struct {
  562. /** List of routerinfo_t */
  563. smartlist_t *routers;
  564. /** Which versions of tor are recommended by this directory? */
  565. char *software_versions;
  566. /** When was the most recent directory that contributed to this list
  567. * published?
  568. */
  569. time_t published_on;
  570. time_t running_routers_updated_on;
  571. /** Which router is claimed to have signed it? */
  572. char *signing_router;
  573. } routerlist_t;
  574. /** Contents of a running-routers list */
  575. typedef struct running_routers_t {
  576. time_t published_on; /**< When was the list marked as published? */
  577. /** Which ORs are on the list? Entries may be prefixed with ! and $. */
  578. smartlist_t *running_routers;
  579. int is_running_routers_format; /**< Are we using the old entry format? */
  580. } running_routers_t;
  581. /** Holds accounting information for a single step in the layered encryption
  582. * performed by a circuit. Used only at the client edge of a circuit. */
  583. struct crypt_path_t {
  584. /* crypto environments */
  585. /** Encryption key and counter for cells heading towards the OR at this
  586. * step. */
  587. crypto_cipher_env_t *f_crypto;
  588. /** Encryption key and counter for cells heading back from the OR at this
  589. * step. */
  590. crypto_cipher_env_t *b_crypto;
  591. /** Digest state for cells heading towards the OR at this step. */
  592. crypto_digest_env_t *f_digest; /* for integrity checking */
  593. /** Digest state for cells heading away from the OR at this step. */
  594. crypto_digest_env_t *b_digest;
  595. /** Current state of Diffie-Hellman key negotiation with the OR at this
  596. * step. */
  597. crypto_dh_env_t *handshake_state;
  598. /** Negotiated key material shared with the OR at this step. */
  599. char handshake_digest[DIGEST_LEN];/* KH in tor-spec.txt */
  600. /** IP4 address of the OR at this step. */
  601. uint32_t addr;
  602. /** Port of the OR at this step. */
  603. uint16_t port;
  604. /** Identity key digest of the OR at this step. */
  605. char identity_digest[DIGEST_LEN];
  606. /** Is the circuit built to this step? Must be one of:
  607. * - CPATH_STATE_CLOSED (The circuit has not been extended to this step)
  608. * - CPATH_STATE_AWAITING_KEYS (We have sent an EXTEND/CREATE to this step
  609. * and not received an EXTENDED/CREATED)
  610. * - CPATH_STATE_OPEN (The circuit has been extended to this step) */
  611. uint8_t state;
  612. #define CPATH_STATE_CLOSED 0
  613. #define CPATH_STATE_AWAITING_KEYS 1
  614. #define CPATH_STATE_OPEN 2
  615. struct crypt_path_t *next; /**< Link to next crypt_path_t in the circuit.
  616. * (The list is circular, so the last node
  617. * links to the first.) */
  618. struct crypt_path_t *prev; /**< Link to previous crypt_path_t in the
  619. * circuit. */
  620. int package_window; /**< How many bytes are we allowed to originate ending
  621. * at this step? */
  622. int deliver_window; /**< How many bytes are we willing to deliver originating
  623. * at this step? */
  624. };
  625. #define CPATH_KEY_MATERIAL_LEN (20*2+16*2)
  626. #define DH_KEY_LEN DH_BYTES
  627. #define ONIONSKIN_CHALLENGE_LEN (PKCS1_OAEP_PADDING_OVERHEAD+\
  628. CIPHER_KEY_LEN+\
  629. DH_KEY_LEN)
  630. #define ONIONSKIN_REPLY_LEN (DH_KEY_LEN+DIGEST_LEN)
  631. #define REND_COOKIE_LEN DIGEST_LEN
  632. typedef struct crypt_path_t crypt_path_t;
  633. /** Information used to build a circuit. */
  634. typedef struct {
  635. /** Intended length of the final circuit. */
  636. int desired_path_len;
  637. /** Nickname of planned exit node. */
  638. char *chosen_exit_name;
  639. /** Identity of planned exit node. */
  640. char chosen_exit_digest[DIGEST_LEN];
  641. /** Whether every node in the circ must have adequate uptime. */
  642. int need_uptime;
  643. /** Whether every node in the circ must have adequate capacity. */
  644. int need_capacity;
  645. /** Whether the last hop was picked with exiting in mind. */
  646. int is_internal;
  647. /** The crypt_path_t to append after rendezvous: used for rendezvous. */
  648. struct crypt_path_t *pending_final_cpath;
  649. /** How many times has building a circuit for this task failed? */
  650. int failure_count;
  651. } cpath_build_state_t;
  652. #define CIRCUIT_MAGIC 0x35315243u
  653. /** Struct for a path (circuit) through the onion routing network. */
  654. struct circuit_t {
  655. uint32_t magic; /**< For memory debugging: must equal CIRCUIT_MAGIC. */
  656. int marked_for_close; /**< Should we close this circuit at the end of the
  657. * main loop? */
  658. const char *marked_for_close_file; /**< For debugging: in which file was this
  659. * circuit marked for close? */
  660. /** The IPv4 address of the OR that is next in this circuit. */
  661. uint32_t n_addr;
  662. /** The port for the OR that is next in this circuit. */
  663. uint16_t n_port;
  664. /** The OR connection that is previous in this circuit. */
  665. connection_t *p_conn;
  666. /** The OR connection that is next in this circuit. */
  667. connection_t *n_conn;
  668. /** The identity hash of n_conn. */
  669. char n_conn_id_digest[DIGEST_LEN];
  670. /** Linked list of AP streams associated with this circuit. */
  671. connection_t *p_streams;
  672. /** Linked list of Exit streams associated with this circuit. */
  673. connection_t *n_streams;
  674. /** Linked list of Exit streams associated with this circuit that are
  675. * still being resolved. */
  676. connection_t *resolving_streams;
  677. /** The next stream_id that will be tried when we're attempting to
  678. * construct a new AP stream originating at this circuit. */
  679. uint16_t next_stream_id;
  680. /** How many relay data cells can we package (read from edge streams)
  681. * on this circuit before we receive a circuit-level sendme cell asking
  682. * for more? */
  683. int package_window;
  684. /** How many relay data cells will we deliver (write to edge streams)
  685. * on this circuit? When deliver_window gets low, we send some
  686. * circuit-level sendme cells to indicate that we're willing to accept
  687. * more. */
  688. int deliver_window;
  689. /** The circuit_id used in the previous (backward) hop of this circuit. */
  690. uint16_t p_circ_id;
  691. /** The circuit_id used in the next (forward) hop of this circuit. */
  692. uint16_t n_circ_id;
  693. /** The cipher used by intermediate hops for cells heading toward the
  694. * OP. */
  695. crypto_cipher_env_t *p_crypto;
  696. /** The cipher used by intermediate hops for cells heading away from
  697. * the OP. */
  698. crypto_cipher_env_t *n_crypto;
  699. /** The integrity-checking digest used by intermediate hops, for
  700. * cells packaged here and heading towards the OP.
  701. */
  702. crypto_digest_env_t *p_digest;
  703. /** The integrity-checking digest used by intermediate hops, for
  704. * cells packaged at the OP and arriving here.
  705. */
  706. crypto_digest_env_t *n_digest;
  707. /** Build state for this circuit. It includes the intended path
  708. * length, the chosen exit router, rendezvous information, etc.
  709. */
  710. cpath_build_state_t *build_state;
  711. /** The doubly-linked list of crypt_path_t entries, one per hop,
  712. * for this circuit. This includes ciphers for each hop,
  713. * integrity-checking digests for each hop, and package/delivery
  714. * windows for each hop.
  715. *
  716. * The cpath field is defined only when we are the circuit's origin.
  717. */
  718. crypt_path_t *cpath;
  719. /** For storage while passing to cpuworker, or while n_conn is pending. */
  720. char onionskin[ONIONSKIN_CHALLENGE_LEN];
  721. char handshake_digest[DIGEST_LEN]; /**< Stores KH for intermediate hops. */
  722. time_t timestamp_created; /**< When was this circuit created? */
  723. time_t timestamp_dirty; /**< When the circuit was first used, or 0 if the
  724. * circuit is clean. */
  725. uint8_t state; /**< Current status of this circuit. */
  726. uint8_t purpose; /**< Why are we creating this circuit? */
  727. /**
  728. * The rend_query field holds y portion of y.onion (nul-terminated)
  729. * if purpose is C_INTRODUCING or C_ESTABLISH_REND, or is a C_GENERAL
  730. * for a hidden service, or is S_*.
  731. */
  732. char rend_query[REND_SERVICE_ID_LEN+1];
  733. /** The rend_pk_digest field holds a hash of location-hidden service's
  734. * PK if purpose is INTRO_POINT or S_ESTABLISH_INTRO or S_RENDEZVOUSING.
  735. */
  736. char rend_pk_digest[DIGEST_LEN];
  737. /** Holds rendezvous cookie if purpose is REND_POINT_WAITING or
  738. * C_ESTABLISH_REND. Filled with zeroes otherwise.
  739. */
  740. char rend_cookie[REND_COOKIE_LEN];
  741. /** Points to spliced circuit if purpose is REND_ESTABLISHED, and circuit
  742. * is not marked for close. */
  743. struct circuit_t *rend_splice;
  744. /** Quasi-global identifier for this circuit; used for control.c */
  745. /* XXXX009 NM This can get re-used after 2**32 circuits. */
  746. uint32_t global_identifier;
  747. struct circuit_t *next; /**< Next circuit in linked list. */
  748. };
  749. typedef struct circuit_t circuit_t;
  750. #define ALLOW_UNVERIFIED_ENTRY 1
  751. #define ALLOW_UNVERIFIED_EXIT 2
  752. #define ALLOW_UNVERIFIED_MIDDLE 4
  753. #define ALLOW_UNVERIFIED_RENDEZVOUS 8
  754. #define ALLOW_UNVERIFIED_INTRODUCTION 16
  755. typedef struct exit_redirect_t {
  756. uint32_t addr;
  757. uint32_t mask;
  758. uint16_t port_min;
  759. uint16_t port_max;
  760. int is_redirect;
  761. uint32_t addr_dest;
  762. uint16_t port_dest;
  763. } exit_redirect_t;
  764. /** Configuration options for a Tor process */
  765. typedef struct {
  766. /** What should the tor process actually do? */
  767. enum {
  768. CMD_RUN_TOR=0, CMD_LIST_FINGERPRINT, CMD_HASH_PASSWORD,
  769. } command;
  770. const char *command_arg; /**< Argument for command-line option. */
  771. struct config_line_t *OldLogOptions; /**< List of configuration lines
  772. * for logfiles, old style. */
  773. struct config_line_t *Logs; /**< New-style list of configuration lines
  774. * for logs */
  775. char *DebugLogFile; /**< Where to send verbose log messages. */
  776. char *DataDirectory; /**< OR only: where to store long-term data. */
  777. char *Nickname; /**< OR only: nickname of this onion router. */
  778. char *Address; /**< OR only: configured address for this onion router. */
  779. char *PidFile; /**< Where to store PID of Tor process. */
  780. char *ExitNodes; /**< Comma-separated list of nicknames of ORs to consider
  781. * as exits. */
  782. char *EntryNodes; /**< Comma-separated list of nicknames of ORs to consider
  783. * as entry points. */
  784. int StrictExitNodes; /**< Boolean: When none of our ExitNodes are up, do we
  785. * stop building circuits? */
  786. int StrictEntryNodes; /**< Boolean: When none of our EntryNodes are up, do we
  787. * stop building circuits? */
  788. char *ExcludeNodes; /**< Comma-separated list of nicknames of ORs not to
  789. * use in circuits. */
  790. char *RendNodes; /**< Comma-separated list of nicknames used as introduction
  791. * points. */
  792. char *RendExcludeNodes; /**< Comma-separated list of nicknames not to use
  793. * as introduction points. */
  794. smartlist_t *AllowUnverifiedNodes; /**< List of "entry", "middle", "exit" */
  795. int _AllowUnverified; /**< Bitmask; derived from AllowUnverifiedNodes; */
  796. struct config_line_t *ExitPolicy; /**< Lists of exit policy components. */
  797. struct config_line_t *SocksPolicy; /**< Lists of socks policy components */
  798. struct config_line_t *DirPolicy; /**< Lists of dir policy components */
  799. /** Addresses to bind for listening for SOCKS connections. */
  800. struct config_line_t *SocksBindAddress;
  801. /** Addresses to bind for listening for OR connections. */
  802. struct config_line_t *ORBindAddress;
  803. /** Addresses to bind for listening for directory connections. */
  804. struct config_line_t *DirBindAddress;
  805. /** Local address to bind outbound sockets */
  806. char *OutboundBindAddress;
  807. /** Directory server only: which versions of
  808. * Tor should we tell users to run? */
  809. struct config_line_t *RecommendedVersions;
  810. /** Whether dirservers refuse router descriptors with private IPs. */
  811. int DirAllowPrivateAddresses;
  812. char *User; /**< Name of user to run Tor as. */
  813. char *Group; /**< Name of group to run Tor as. */
  814. double PathlenCoinWeight; /**< Parameter used to configure average path
  815. * length (alpha in geometric distribution). */
  816. int ORPort; /**< Port to listen on for OR connections. */
  817. int SocksPort; /**< Port to listen on for SOCKS connections. */
  818. int ControlPort; /**< Port to listen on for control connections. */
  819. int DirPort; /**< Port to listen on for directory connections. */
  820. int AuthoritativeDir; /**< Boolean: is this an authoritative directory? */
  821. int ClientOnly; /**< Boolean: should we never evolve into a server role? */
  822. int MaxConn; /**< Maximum number of simultaneous connections. */
  823. int IgnoreVersion; /**< If true, run no matter what versions of Tor the
  824. * directory recommends. */
  825. int RunAsDaemon; /**< If true, run in the background. (Unix only) */
  826. int FascistFirewall; /**< Whether to prefer ORs reachable on open ports. */
  827. smartlist_t *FirewallPorts; /**< Which ports our firewall allows (strings). */
  828. /** Application ports that require all nodes in circ to have sufficient uptime. */
  829. smartlist_t *LongLivedPorts;
  830. int DirFetchPeriod; /**< How often do we fetch new directories? */
  831. int DirPostPeriod; /**< How often do we post our server descriptor to the
  832. * authoritative directory servers? */
  833. int RendPostPeriod; /**< How often do we post each rendezvous service
  834. * descriptor? Remember to publish them independently. */
  835. int StatusFetchPeriod; /**< How often do we fetch running-routers lists? */
  836. int KeepalivePeriod; /**< How often do we send padding cells to keep
  837. * connections alive? */
  838. int MaxOnionsPending; /**< How many circuit CREATE requests do we allow
  839. * to wait simultaneously before we start dropping
  840. * them? */
  841. int NewCircuitPeriod; /**< How long do we use a circuit before building
  842. * a new one? */
  843. int MaxCircuitDirtiness; /**< Never use circs that were first used more than
  844. this interval ago. */
  845. uint64_t BandwidthRate; /**< How much bandwidth, on average, are we willing to
  846. * use in a second? */
  847. uint64_t BandwidthBurst; /**< How much bandwidth, at maximum, are we willing to
  848. * use in a second? */
  849. int NumCpus; /**< How many CPUs should we try to use? */
  850. int RunTesting; /**< If true, create testing circuits to measure how well the
  851. * other ORs are running. */
  852. struct config_line_t *RendConfigLines; /**< List of configuration lines
  853. * for rendezvous services. */
  854. char *ContactInfo; /**< Contact info to be published in the directory */
  855. char *HttpProxy; /**< hostname[:port] to use as http proxy, if any */
  856. uint32_t HttpProxyAddr; /**< Parsed IPv4 addr for http proxy, if any */
  857. uint16_t HttpProxyPort; /**< Parsed port for http proxy, if any */
  858. struct config_line_t *DirServers; /**< List of configuration lines
  859. * for directory servers. */
  860. char *MyFamily; /**< Declared family for this OR. */
  861. struct config_line_t *NodeFamilies; /**< List of config lines for
  862. * node families */
  863. struct config_line_t *RedirectExit; /**< List of config lines for simple
  864. * addr/port redirection */
  865. smartlist_t *RedirectExitList; /**< List of exit_redirect_t */
  866. int _MonthlyAccountingStart; /**< Deprecated: day of month when accounting
  867. * interval starts */
  868. char *AccountingStart; /** How long is the accounting interval, and when
  869. * does it start? */
  870. uint64_t AccountingMax; /**< How many bytes do we allow per accounting
  871. * interval before hibernation? 0 for "never
  872. * hibernate." */
  873. int _AccountingMaxKB; /**< How many KB do we allow per accounting
  874. * interval before hibernation? 0 for "never
  875. * hibernate." (Based on a deprecated option)*/
  876. char *HashedControlPassword; /**< Base64-encoded hash of a password for
  877. * the control system. */
  878. int CookieAuthentication; /**< Boolean: do we enable cookie-based auth for
  879. * the control system? */
  880. } or_options_t;
  881. #define MAX_SOCKS_REPLY_LEN 1024
  882. #define MAX_SOCKS_ADDR_LEN 256
  883. #define SOCKS_COMMAND_CONNECT 0x01
  884. #define SOCKS_COMMAND_RESOLVE 0xF0
  885. /** State of a SOCKS request from a user to an OP */
  886. struct socks_request_t {
  887. char socks_version; /**< Which version of SOCKS did the client use? */
  888. int command; /**< What has the user requested? One of CONNECT or RESOLVE. */
  889. size_t replylen; /**< Length of <b>reply</b>. */
  890. char reply[MAX_SOCKS_REPLY_LEN]; /**< Write an entry into this string if
  891. * we want to specify our own socks reply,
  892. * rather than using the default socks4 or
  893. * socks5 socks reply. We use this for the
  894. * two-stage socks5 handshake.
  895. */
  896. int has_finished; /**< Has the SOCKS handshake finished? */
  897. char address[MAX_SOCKS_ADDR_LEN]; /**< What address did the client ask to connect to? */
  898. uint16_t port; /**< What port did the client ask to connect to? */
  899. };
  900. /* all the function prototypes go here */
  901. /********************************* buffers.c ***************************/
  902. buf_t *buf_new(void);
  903. buf_t *buf_new_with_capacity(size_t size);
  904. void buf_free(buf_t *buf);
  905. void buf_clear(buf_t *buf);
  906. size_t buf_datalen(const buf_t *buf);
  907. size_t buf_capacity(const buf_t *buf);
  908. const char *_buf_peek_raw_buffer(const buf_t *buf);
  909. int read_to_buf(int s, size_t at_most, buf_t *buf, int *reached_eof);
  910. int read_to_buf_tls(tor_tls *tls, size_t at_most, buf_t *buf);
  911. int flush_buf(int s, buf_t *buf, size_t *buf_flushlen);
  912. int flush_buf_tls(tor_tls *tls, buf_t *buf, size_t *buf_flushlen);
  913. int write_to_buf(const char *string, size_t string_len, buf_t *buf);
  914. int fetch_from_buf(char *string, size_t string_len, buf_t *buf);
  915. int fetch_from_buf_http(buf_t *buf,
  916. char **headers_out, size_t max_headerlen,
  917. char **body_out, size_t *body_used, size_t max_bodylen);
  918. int fetch_from_buf_socks(buf_t *buf, socks_request_t *req);
  919. int fetch_from_buf_control(buf_t *buf, uint16_t *len_out, uint16_t *type_out,
  920. char **body_out);
  921. void assert_buf_ok(buf_t *buf);
  922. /********************************* circuitbuild.c **********************/
  923. char *circuit_list_path(circuit_t *circ, int verbose);
  924. void circuit_log_path(int severity, circuit_t *circ);
  925. void circuit_rep_hist_note_result(circuit_t *circ);
  926. void circuit_dump_by_conn(connection_t *conn, int severity);
  927. circuit_t *circuit_establish_circuit(uint8_t purpose, const char *exit_digest,
  928. int need_uptime, int need_capacity, int internal);
  929. void circuit_n_conn_done(connection_t *or_conn, int status);
  930. int circuit_send_next_onion_skin(circuit_t *circ);
  931. int circuit_extend(cell_t *cell, circuit_t *circ);
  932. int circuit_init_cpath_crypto(crypt_path_t *cpath, char *key_data, int reverse);
  933. int circuit_finish_handshake(circuit_t *circ, char *reply);
  934. int circuit_truncated(circuit_t *circ, crypt_path_t *layer);
  935. int onionskin_answer(circuit_t *circ, unsigned char *payload, unsigned char *keys);
  936. int circuit_all_predicted_ports_handled(time_t now, int *need_uptime,
  937. int *need_capacity);
  938. int circuit_append_new_hop(circuit_t *circ, char *nickname, const char *exit_digest);
  939. void onion_append_to_cpath(crypt_path_t **head_ptr, crypt_path_t *new_hop);
  940. /********************************* circuitlist.c ***********************/
  941. extern const char *circuit_state_to_string[];
  942. void circuit_close_all_marked(void);
  943. circuit_t *circuit_new(uint16_t p_circ_id, connection_t *p_conn);
  944. circuit_t *circuit_get_by_circ_id_conn(uint16_t circ_id, connection_t *conn);
  945. circuit_t *circuit_get_by_conn(connection_t *conn);
  946. circuit_t *circuit_get_by_rend_query_and_purpose(const char *rend_query, uint8_t purpose);
  947. circuit_t *circuit_get_next_by_pk_and_purpose(circuit_t *start,
  948. const char *digest, uint8_t purpose);
  949. circuit_t *circuit_get_rendezvous(const char *cookie);
  950. circuit_t *circuit_get_clean_open(uint8_t purpose, int need_uptime,
  951. int need_capacity, int internal);
  952. int _circuit_mark_for_close(circuit_t *circ);
  953. #define circuit_mark_for_close(c) \
  954. do { \
  955. if (_circuit_mark_for_close(c)<0) { \
  956. log(LOG_WARN,"Duplicate call to circuit_mark_for_close at %s:%d (first at %s:%d)", \
  957. _SHORT_FILE_,__LINE__, \
  958. c->marked_for_close_file,c->marked_for_close); \
  959. } else { \
  960. c->marked_for_close_file = _SHORT_FILE_; \
  961. c->marked_for_close = __LINE__; \
  962. } \
  963. } while (0)
  964. void assert_cpath_layer_ok(const crypt_path_t *cp);
  965. void assert_circuit_ok(const circuit_t *c);
  966. /********************************* circuituse.c ************************/
  967. void circuit_expire_building(time_t now);
  968. void circuit_remove_handled_ports(smartlist_t *needed_ports);
  969. int circuit_stream_is_being_handled(connection_t *conn, uint16_t port, int min);
  970. void circuit_build_needed_circs(time_t now);
  971. void circuit_detach_stream(circuit_t *circ, connection_t *conn);
  972. void circuit_about_to_close_connection(connection_t *conn);
  973. void circuit_has_opened(circuit_t *circ);
  974. void circuit_build_failed(circuit_t *circ);
  975. circuit_t *circuit_launch_by_nickname(uint8_t purpose, const char *exit_nickname,
  976. int need_uptime, int need_capacity, int is_internal);
  977. circuit_t *circuit_launch_by_identity(uint8_t purpose, const char *exit_digest,
  978. int need_uptime, int need_capacity, int is_internal);
  979. void circuit_reset_failure_count(int timeout);
  980. int connection_ap_handshake_attach_circuit(connection_t *conn);
  981. /********************************* command.c ***************************/
  982. void command_process_cell(cell_t *cell, connection_t *conn);
  983. extern unsigned long stats_n_padding_cells_processed;
  984. extern unsigned long stats_n_create_cells_processed;
  985. extern unsigned long stats_n_created_cells_processed;
  986. extern unsigned long stats_n_relay_cells_processed;
  987. extern unsigned long stats_n_destroy_cells_processed;
  988. /********************************* config.c ***************************/
  989. struct config_line_t {
  990. char *key;
  991. char *value;
  992. struct config_line_t *next;
  993. };
  994. or_options_t *get_options(void);
  995. void set_options(or_options_t *new_val);
  996. int options_act(void);
  997. int config_get_lines(char *string, struct config_line_t **result);
  998. void config_free_lines(struct config_line_t *front);
  999. int config_trial_assign(struct config_line_t *list, int reset);
  1000. int resolve_my_address(const char *address, uint32_t *addr);
  1001. void options_init(or_options_t *options);
  1002. int init_from_config(int argc, char **argv);
  1003. int config_init_logs(or_options_t *options, int validate_only);
  1004. int config_parse_addr_policy(struct config_line_t *cfg,
  1005. addr_policy_t **dest);
  1006. void addr_policy_free(addr_policy_t *p);
  1007. int config_option_is_recognized(const char *key);
  1008. struct config_line_t *config_get_assigned_option(or_options_t *options,
  1009. const char *key);
  1010. char *config_dump_options(or_options_t *options, int minimal);
  1011. int save_current_config(void);
  1012. /********************************* connection.c ***************************/
  1013. #define CONN_TYPE_TO_STRING(t) (((t) < _CONN_TYPE_MIN || (t) > _CONN_TYPE_MAX) ? \
  1014. "Unknown" : conn_type_to_string[(t)])
  1015. extern const char *conn_type_to_string[];
  1016. extern const char *conn_state_to_string[][_CONN_TYPE_MAX+1];
  1017. connection_t *connection_new(int type);
  1018. void connection_free(connection_t *conn);
  1019. void connection_free_all(void);
  1020. void connection_about_to_close_connection(connection_t *conn);
  1021. void connection_close_immediate(connection_t *conn);
  1022. int _connection_mark_for_close(connection_t *conn);
  1023. #define connection_mark_for_close(c) \
  1024. do { \
  1025. if (_connection_mark_for_close(c)<0) { \
  1026. log(LOG_WARN,"Duplicate call to connection_mark_for_close at %s:%d (first at %s:%d)", \
  1027. _SHORT_FILE_,__LINE__, \
  1028. c->marked_for_close_file,c->marked_for_close); \
  1029. } else { \
  1030. c->marked_for_close_file = _SHORT_FILE_; \
  1031. c->marked_for_close = __LINE__; \
  1032. } \
  1033. } while (0)
  1034. void connection_expire_held_open(void);
  1035. int connection_connect(connection_t *conn, char *address, uint32_t addr, uint16_t port);
  1036. int retry_all_listeners(int force);
  1037. void connection_bucket_init(void);
  1038. void connection_bucket_refill(struct timeval *now);
  1039. int connection_handle_read(connection_t *conn);
  1040. int connection_fetch_from_buf(char *string, size_t len, connection_t *conn);
  1041. int connection_wants_to_flush(connection_t *conn);
  1042. int connection_outbuf_too_full(connection_t *conn);
  1043. int connection_handle_write(connection_t *conn);
  1044. void connection_write_to_buf(const char *string, size_t len, connection_t *conn);
  1045. connection_t *connection_exact_get_by_addr_port(uint32_t addr, uint16_t port);
  1046. connection_t *connection_get_by_identity_digest(const char *digest, int type);
  1047. connection_t *connection_get_by_type(int type);
  1048. connection_t *connection_get_by_type_state(int type, int state);
  1049. connection_t *connection_get_by_type_state_lastwritten(int type, int state);
  1050. connection_t *connection_get_by_type_rendquery(int type, const char *rendquery);
  1051. #define connection_speaks_cells(conn) ((conn)->type == CONN_TYPE_OR)
  1052. #define connection_has_pending_tls_data(conn) \
  1053. ((conn)->type == CONN_TYPE_OR && \
  1054. (conn)->state == OR_CONN_STATE_OPEN && \
  1055. tor_tls_get_pending_bytes((conn)->tls))
  1056. int connection_is_listener(connection_t *conn);
  1057. int connection_state_is_open(connection_t *conn);
  1058. int connection_state_is_connecting(connection_t *conn);
  1059. int connection_send_destroy(uint16_t circ_id, connection_t *conn);
  1060. void assert_connection_ok(connection_t *conn, time_t now);
  1061. int connection_or_nonopen_was_started_here(connection_t *conn);
  1062. /********************************* connection_edge.c ***************************/
  1063. int connection_edge_reached_eof(connection_t *conn);
  1064. int connection_edge_process_inbuf(connection_t *conn, int package_partial);
  1065. int connection_edge_destroy(uint16_t circ_id, connection_t *conn);
  1066. int connection_edge_end(connection_t *conn, char reason, crypt_path_t *cpath_layer);
  1067. int connection_edge_finished_flushing(connection_t *conn);
  1068. int connection_edge_finished_connecting(connection_t *conn);
  1069. int connection_ap_handshake_send_begin(connection_t *ap_conn, circuit_t *circ);
  1070. int connection_ap_handshake_send_resolve(connection_t *ap_conn, circuit_t *circ);
  1071. int connection_ap_make_bridge(char *address, uint16_t port);
  1072. void connection_ap_handshake_socks_reply(connection_t *conn, char *reply,
  1073. size_t replylen, int status);
  1074. void connection_ap_handshake_socks_resolved(connection_t *conn,
  1075. int answer_type,
  1076. size_t answer_len,
  1077. const char *answer);
  1078. int connection_exit_begin_conn(cell_t *cell, circuit_t *circ);
  1079. int connection_exit_begin_resolve(cell_t *cell, circuit_t *circ);
  1080. void connection_exit_connect(connection_t *conn);
  1081. int connection_edge_is_rendezvous_stream(connection_t *conn);
  1082. int connection_ap_can_use_exit(connection_t *conn, routerinfo_t *exit);
  1083. void connection_ap_expire_beginning(void);
  1084. void connection_ap_attach_pending(void);
  1085. void parse_socks_policy(void);
  1086. int socks_policy_permits_address(uint32_t addr);
  1087. void client_dns_init(void);
  1088. uint32_t client_dns_lookup_entry(const char *address);
  1089. int client_dns_incr_failures(const char *address);
  1090. void client_dns_set_entry(const char *address, uint32_t val);
  1091. void client_dns_clean(void);
  1092. void set_exit_redirects(smartlist_t *lst);
  1093. typedef enum hostname_type_t {
  1094. NORMAL_HOSTNAME, ONION_HOSTNAME, EXIT_HOSTNAME
  1095. } hostname_type_t;
  1096. hostname_type_t parse_extended_hostname(char *address);
  1097. /********************************* connection_or.c ***************************/
  1098. int connection_or_reached_eof(connection_t *conn);
  1099. int connection_or_process_inbuf(connection_t *conn);
  1100. int connection_or_finished_flushing(connection_t *conn);
  1101. int connection_or_finished_connecting(connection_t *conn);
  1102. connection_t *connection_or_connect(uint32_t addr, uint16_t port,
  1103. const char *id_digest);
  1104. int connection_tls_start_handshake(connection_t *conn, int receiving);
  1105. int connection_tls_continue_handshake(connection_t *conn);
  1106. void connection_or_write_cell_to_buf(const cell_t *cell, connection_t *conn);
  1107. void connection_or_update_nickname(connection_t *conn);
  1108. /********************************* control.c ***************************/
  1109. typedef enum circuit_status_event_t {
  1110. CIRC_EVENT_LAUNCHED = 0,
  1111. CIRC_EVENT_BUILT = 1,
  1112. CIRC_EVENT_EXTENDED = 2,
  1113. CIRC_EVENT_FAILED = 3,
  1114. CIRC_EVENT_CLOSED = 4,
  1115. } circuit_status_event_t;
  1116. typedef enum stream_status_event_t {
  1117. STREAM_EVENT_SENT_CONNECT = 0,
  1118. STREAM_EVENT_SENT_RESOLVE = 1,
  1119. STREAM_EVENT_SUCCEEDED = 2,
  1120. STREAM_EVENT_FAILED = 3,
  1121. STREAM_EVENT_CLOSED = 4
  1122. } stream_status_event_t;
  1123. typedef enum or_conn_status_event_t {
  1124. OR_CONN_EVENT_LAUNCHED = 0,
  1125. OR_CONN_EVENT_CONNECTED = 1,
  1126. OR_CONN_EVENT_FAILED = 2,
  1127. OR_CONN_EVENT_CLOSED = 3,
  1128. } or_conn_status_event_t;
  1129. int connection_control_finished_flushing(connection_t *conn);
  1130. int connection_control_reached_eof(connection_t *conn);
  1131. int connection_control_process_inbuf(connection_t *conn);
  1132. int control_event_circuit_status(circuit_t *circ, circuit_status_event_t e);
  1133. int control_event_stream_status(connection_t *conn, stream_status_event_t e);
  1134. int control_event_or_conn_status(connection_t *conn, or_conn_status_event_t e);
  1135. int control_event_bandwidth_used(uint32_t n_read, uint32_t n_written);
  1136. void control_event_logmsg(int severity, const char *msg);
  1137. int init_cookie_authentication(int enabled);
  1138. int decode_hashed_password(char *buf, const char *hashed);
  1139. /********************************* cpuworker.c *****************************/
  1140. void cpu_init(void);
  1141. void cpuworkers_rotate(void);
  1142. int connection_cpu_finished_flushing(connection_t *conn);
  1143. int connection_cpu_reached_eof(connection_t *conn);
  1144. int connection_cpu_process_inbuf(connection_t *conn);
  1145. int assign_to_cpuworker(connection_t *cpuworker, unsigned char question_type,
  1146. void *task);
  1147. /********************************* directory.c ***************************/
  1148. int dir_policy_permits_address(uint32_t addr);
  1149. void directory_post_to_dirservers(uint8_t purpose, const char *payload,
  1150. size_t payload_len);
  1151. void directory_get_from_dirserver(uint8_t purpose, const char *resource,
  1152. int retry_if_no_servers);
  1153. int connection_dir_reached_eof(connection_t *conn);
  1154. int connection_dir_process_inbuf(connection_t *conn);
  1155. int connection_dir_finished_flushing(connection_t *conn);
  1156. int connection_dir_finished_connecting(connection_t *conn);
  1157. void connection_dir_connect_failed(connection_t *conn);
  1158. void parse_dir_policy(void);
  1159. /********************************* dirserv.c ***************************/
  1160. int dirserv_add_own_fingerprint(const char *nickname, crypto_pk_env_t *pk);
  1161. int dirserv_parse_fingerprint_file(const char *fname);
  1162. int dirserv_router_fingerprint_is_known(const routerinfo_t *router);
  1163. void dirserv_free_fingerprint_list(void);
  1164. const char *dirserv_get_nickname_by_digest(const char *digest);
  1165. int dirserv_add_descriptor(const char **desc);
  1166. int dirserv_load_from_directory_string(const char *dir);
  1167. void dirserv_free_descriptors(void);
  1168. void dirserv_remove_old_servers(int age);
  1169. int dirserv_dump_directory_to_string(char **dir_out,
  1170. crypto_pk_env_t *private_key);
  1171. void directory_set_dirty(void);
  1172. size_t dirserv_get_directory(const char **cp, int compress);
  1173. size_t dirserv_get_runningrouters(const char **rr, int compress);
  1174. void dirserv_set_cached_directory(const char *directory, time_t when,
  1175. int is_running_routers);
  1176. /********************************* dns.c ***************************/
  1177. void dns_init(void);
  1178. int connection_dns_finished_flushing(connection_t *conn);
  1179. int connection_dns_reached_eof(connection_t *conn);
  1180. int connection_dns_process_inbuf(connection_t *conn);
  1181. void dnsworkers_rotate(void);
  1182. void connection_dns_remove(connection_t *conn);
  1183. void assert_connection_edge_not_dns_pending(connection_t *conn);
  1184. void assert_all_pending_dns_resolves_ok(void);
  1185. void dns_cancel_pending_resolve(char *question);
  1186. int dns_resolve(connection_t *exitconn);
  1187. /********************************* hibernate.c **********************/
  1188. int accounting_parse_options(or_options_t *options, int validate_only);
  1189. int accounting_is_enabled(or_options_t *options);
  1190. void configure_accounting(time_t now);
  1191. void accounting_run_housekeeping(time_t now);
  1192. void accounting_add_bytes(size_t n_read, size_t n_written, int seconds);
  1193. int accounting_record_bandwidth_usage(time_t now);
  1194. void hibernate_begin_shutdown(void);
  1195. int we_are_hibernating(void);
  1196. void consider_hibernation(time_t now);
  1197. /********************************* main.c ***************************/
  1198. int connection_add(connection_t *conn);
  1199. int connection_remove(connection_t *conn);
  1200. int connection_in_array(connection_t *conn);
  1201. void add_connection_to_closeable_list(connection_t *conn);
  1202. void get_connection_array(connection_t ***array, int *n);
  1203. void connection_watch_events(connection_t *conn, short events);
  1204. int connection_is_reading(connection_t *conn);
  1205. void connection_stop_reading(connection_t *conn);
  1206. void connection_start_reading(connection_t *conn);
  1207. int connection_is_writing(connection_t *conn);
  1208. void connection_stop_writing(connection_t *conn);
  1209. void connection_start_writing(connection_t *conn);
  1210. void directory_all_unreachable(time_t now);
  1211. void directory_has_arrived(time_t now);
  1212. int authdir_mode(or_options_t *options);
  1213. int clique_mode(or_options_t *options);
  1214. int server_mode(or_options_t *options);
  1215. int advertised_server_mode(void);
  1216. int proxy_mode(or_options_t *options);
  1217. int control_signal_act(int the_signal);
  1218. void handle_signals(int is_parent);
  1219. void tor_cleanup(void);
  1220. int tor_main(int argc, char *argv[]);
  1221. /********************************* onion.c ***************************/
  1222. int onion_pending_add(circuit_t *circ);
  1223. circuit_t *onion_next_task(void);
  1224. void onion_pending_remove(circuit_t *circ);
  1225. int onion_skin_create(crypto_pk_env_t *router_key,
  1226. crypto_dh_env_t **handshake_state_out,
  1227. char *onion_skin_out);
  1228. int onion_skin_server_handshake(char *onion_skin,
  1229. crypto_pk_env_t *private_key,
  1230. crypto_pk_env_t *prev_private_key,
  1231. char *handshake_reply_out,
  1232. char *key_out,
  1233. size_t key_out_len);
  1234. int onion_skin_client_handshake(crypto_dh_env_t *handshake_state,
  1235. char *handshake_reply,
  1236. char *key_out,
  1237. size_t key_out_len);
  1238. /********************************* relay.c ***************************/
  1239. extern unsigned long stats_n_relay_cells_relayed;
  1240. extern unsigned long stats_n_relay_cells_delivered;
  1241. int circuit_receive_relay_cell(cell_t *cell, circuit_t *circ,
  1242. int cell_direction);
  1243. void relay_header_pack(char *dest, const relay_header_t *src);
  1244. void relay_header_unpack(relay_header_t *dest, const char *src);
  1245. int connection_edge_send_command(connection_t *fromconn, circuit_t *circ,
  1246. int relay_command, const char *payload,
  1247. size_t payload_len, crypt_path_t *cpath_layer);
  1248. int connection_edge_package_raw_inbuf(connection_t *conn, int package_partial);
  1249. void connection_edge_consider_sending_sendme(connection_t *conn);
  1250. extern uint64_t stats_n_data_cells_packaged;
  1251. extern uint64_t stats_n_data_bytes_packaged;
  1252. extern uint64_t stats_n_data_cells_received;
  1253. extern uint64_t stats_n_data_bytes_received;
  1254. /********************************* rephist.c ***************************/
  1255. void rep_hist_init(void);
  1256. void rep_hist_note_connect_failed(const char* nickname, time_t when);
  1257. void rep_hist_note_connect_succeeded(const char* nickname, time_t when);
  1258. void rep_hist_note_disconnect(const char* nickname, time_t when);
  1259. void rep_hist_note_connection_died(const char* nickname, time_t when);
  1260. void rep_hist_note_extend_succeeded(const char *from_name,
  1261. const char *to_name);
  1262. void rep_hist_note_extend_failed(const char *from_name, const char *to_name);
  1263. void rep_hist_dump_stats(time_t now, int severity);
  1264. void rep_hist_note_bytes_read(int num_bytes, time_t when);
  1265. void rep_hist_note_bytes_written(int num_bytes, time_t when);
  1266. int rep_hist_bandwidth_assess(void);
  1267. char *rep_hist_get_bandwidth_lines(void);
  1268. void rep_history_clean(time_t before);
  1269. void rep_hist_note_used_port(uint16_t port, time_t now);
  1270. smartlist_t *rep_hist_get_predicted_ports(time_t now);
  1271. void rep_hist_note_used_hidserv(time_t now, int need_uptime, int need_capacity);
  1272. int rep_hist_get_predicted_hidserv(time_t now, int *need_uptime, int *need_capacity);
  1273. void rep_hist_note_used_resolve(time_t now);
  1274. int rep_hist_get_predicted_resolve(time_t now);
  1275. /********************************* rendclient.c ***************************/
  1276. void rend_client_introcirc_has_opened(circuit_t *circ);
  1277. void rend_client_rendcirc_has_opened(circuit_t *circ);
  1278. int rend_client_introduction_acked(circuit_t *circ, const char *request, size_t request_len);
  1279. void rend_client_refetch_renddesc(const char *query);
  1280. int rend_client_remove_intro_point(char *failed_intro, const char *query);
  1281. int rend_client_rendezvous_acked(circuit_t *circ, const char *request, size_t request_len);
  1282. int rend_client_receive_rendezvous(circuit_t *circ, const char *request, size_t request_len);
  1283. void rend_client_desc_fetched(char *query, int status);
  1284. char *rend_client_get_random_intro(char *query);
  1285. int rend_client_send_introduction(circuit_t *introcirc, circuit_t *rendcirc);
  1286. /********************************* rendcommon.c ***************************/
  1287. typedef struct rend_service_descriptor_t {
  1288. crypto_pk_env_t *pk;
  1289. time_t timestamp;
  1290. int n_intro_points;
  1291. char **intro_points;
  1292. } rend_service_descriptor_t;
  1293. int rend_cmp_service_ids(const char *one, const char *two);
  1294. void rend_process_relay_cell(circuit_t *circ, int command, size_t length,
  1295. const char *payload);
  1296. void rend_service_descriptor_free(rend_service_descriptor_t *desc);
  1297. int rend_encode_service_descriptor(rend_service_descriptor_t *desc,
  1298. crypto_pk_env_t *key,
  1299. char **str_out,
  1300. size_t *len_out);
  1301. rend_service_descriptor_t *rend_parse_service_descriptor(const char *str, size_t len);
  1302. int rend_get_service_id(crypto_pk_env_t *pk, char *out);
  1303. typedef struct rend_cache_entry_t {
  1304. size_t len; /* Length of desc */
  1305. time_t received; /* When did we get the descriptor? */
  1306. char *desc; /* Service descriptor */
  1307. rend_service_descriptor_t *parsed; /* Parsed value of 'desc' */
  1308. } rend_cache_entry_t;
  1309. void rend_cache_init(void);
  1310. void rend_cache_clean(void);
  1311. int rend_valid_service_id(const char *query);
  1312. int rend_cache_lookup_desc(const char *query, const char **desc, size_t *desc_len);
  1313. int rend_cache_lookup_entry(const char *query, rend_cache_entry_t **entry_out);
  1314. int rend_cache_store(const char *desc, size_t desc_len);
  1315. /********************************* rendservice.c ***************************/
  1316. int rend_config_services(or_options_t *options, int validate_only);
  1317. int rend_service_load_keys(void);
  1318. void rend_services_init(void);
  1319. void rend_services_introduce(void);
  1320. void rend_consider_services_upload(time_t now);
  1321. void rend_service_intro_has_opened(circuit_t *circuit);
  1322. int rend_service_intro_established(circuit_t *circuit, const char *request, size_t request_len);
  1323. void rend_service_rendezvous_has_opened(circuit_t *circuit);
  1324. int rend_service_introduce(circuit_t *circuit, const char *request, size_t request_len);
  1325. void rend_service_relaunch_rendezvous(circuit_t *oldcirc);
  1326. int rend_service_set_connection_addr_port(connection_t *conn, circuit_t *circ);
  1327. void rend_service_dump_stats(int severity);
  1328. /********************************* rendmid.c *******************************/
  1329. int rend_mid_establish_intro(circuit_t *circ, const char *request, size_t request_len);
  1330. int rend_mid_introduce(circuit_t *circ, const char *request, size_t request_len);
  1331. int rend_mid_establish_rendezvous(circuit_t *circ, const char *request, size_t request_len);
  1332. int rend_mid_rendezvous(circuit_t *circ, const char *request, size_t request_len);
  1333. /********************************* router.c ***************************/
  1334. void set_onion_key(crypto_pk_env_t *k);
  1335. crypto_pk_env_t *get_onion_key(void);
  1336. crypto_pk_env_t *get_previous_onion_key(void);
  1337. time_t get_onion_key_set_at(void);
  1338. void set_identity_key(crypto_pk_env_t *k);
  1339. crypto_pk_env_t *get_identity_key(void);
  1340. int identity_key_is_set(void);
  1341. void dup_onion_keys(crypto_pk_env_t **key, crypto_pk_env_t **last);
  1342. int init_keys(void);
  1343. crypto_pk_env_t *init_key_from_file(const char *fname);
  1344. void rotate_onion_key(void);
  1345. void router_set_bandwidth_capacity(int bw);
  1346. int router_get_bandwidth_capacity(void);
  1347. void router_retry_connections(void);
  1348. int router_is_clique_mode(routerinfo_t *router);
  1349. void router_upload_dir_desc_to_dirservers(int force);
  1350. void mark_my_descriptor_dirty(void);
  1351. int router_compare_to_my_exit_policy(connection_t *conn);
  1352. routerinfo_t *router_get_my_routerinfo(void);
  1353. const char *router_get_my_descriptor(void);
  1354. int router_is_me(routerinfo_t *router);
  1355. int router_rebuild_descriptor(int force);
  1356. int router_dump_router_to_string(char *s, size_t maxlen, routerinfo_t *router,
  1357. crypto_pk_env_t *ident_key);
  1358. int is_legal_nickname(const char *s);
  1359. int is_legal_nickname_or_hexdigest(const char *s);
  1360. /********************************* routerlist.c ***************************/
  1361. typedef struct trusted_dir_server_t {
  1362. char *address;
  1363. uint32_t addr;
  1364. uint16_t dir_port;
  1365. char digest[DIGEST_LEN];
  1366. int is_running;
  1367. } trusted_dir_server_t;
  1368. int router_reload_router_list(void);
  1369. void router_get_trusted_dir_servers(smartlist_t **outp);
  1370. routerinfo_t *router_pick_directory_server(int requireothers,
  1371. int fascistfirewall,
  1372. int for_running_routers,
  1373. int retry_if_no_servers);
  1374. trusted_dir_server_t *router_pick_trusteddirserver(int requireothers,
  1375. int fascistfirewall,
  1376. int retry_if_no_servers);
  1377. int all_trusted_directory_servers_down(void);
  1378. struct smartlist_t;
  1379. void routerlist_add_family(struct smartlist_t *sl, routerinfo_t *router);
  1380. void add_nickname_list_to_smartlist(struct smartlist_t *sl, const char *list, int warn_if_down);
  1381. int router_nickname_is_in_list(routerinfo_t *router, const char *list);
  1382. routerinfo_t *routerlist_find_my_routerinfo(void);
  1383. int router_nickname_matches(routerinfo_t *router, const char *nickname);
  1384. /** How many seconds a router must be up before we'll use it for
  1385. * reliability-critical node positions.
  1386. */
  1387. #define ROUTER_REQUIRED_MIN_UPTIME (24*3600) /* a day */
  1388. #define ROUTER_REQUIRED_MIN_BANDWIDTH 10000
  1389. int router_is_unreliable(routerinfo_t *router, int need_uptime, int need_capacity);
  1390. routerinfo_t *routerlist_sl_choose_by_bandwidth(smartlist_t *sl);
  1391. routerinfo_t *router_choose_random_node(const char *preferred,
  1392. const char *excluded,
  1393. struct smartlist_t *excludedsmartlist,
  1394. int need_uptime, int need_bandwidth,
  1395. int allow_unverified, int strict);
  1396. routerinfo_t *router_get_by_addr_port(uint32_t addr, uint16_t port);
  1397. routerinfo_t *router_get_by_nickname(const char *nickname);
  1398. routerinfo_t *router_get_by_hexdigest(const char *hexdigest);
  1399. routerinfo_t *router_get_by_digest(const char *digest);
  1400. int router_digest_is_trusted_dir(const char *digest);
  1401. void router_get_routerlist(routerlist_t **prouterlist);
  1402. time_t routerlist_get_published_time(void);
  1403. void routerlist_free(routerlist_t *routerlist);
  1404. void routerinfo_free(routerinfo_t *router);
  1405. routerinfo_t *routerinfo_copy(const routerinfo_t *router);
  1406. void router_mark_as_down(const char *digest);
  1407. void routerlist_remove_old_routers(int age);
  1408. int router_load_routerlist_from_directory(const char *s,crypto_pk_env_t *pkey,
  1409. int dir_is_recent, int dir_is_cached);
  1410. int router_compare_addr_to_addr_policy(uint32_t addr, uint16_t port,
  1411. addr_policy_t *policy);
  1412. #define ADDR_POLICY_ACCEPTED 0
  1413. #define ADDR_POLICY_REJECTED -1
  1414. #define ADDR_POLICY_UNKNOWN 1
  1415. int router_exit_policy_all_routers_reject(uint32_t addr, uint16_t port,
  1416. int need_uptime);
  1417. int router_exit_policy_rejects_all(routerinfo_t *router);
  1418. void running_routers_free(running_routers_t *rr);
  1419. void routerlist_update_from_runningrouters(routerlist_t *list,
  1420. running_routers_t *rr);
  1421. int routers_update_status_from_entry(smartlist_t *routers,
  1422. time_t list_time,
  1423. const char *s,
  1424. int rr_format);
  1425. int router_update_status_from_smartlist(routerinfo_t *r,
  1426. time_t list_time,
  1427. smartlist_t *running_list,
  1428. int rr_format);
  1429. void add_trusted_dir_server(const char *addr, uint16_t port,const char *digest);
  1430. void clear_trusted_dir_servers(void);
  1431. /********************************* routerparse.c ************************/
  1432. #define MAX_STATUS_TAG_LEN 32
  1433. /** Structure to hold parsed Tor versions. This is a little messier
  1434. * than we would like it to be, because we changed version schemes with 0.1.0.
  1435. *
  1436. * Before 0.1.0, versions were of the format:
  1437. * MAJOR.MINOR.MICRO(status(PATCHLEVEL))?(-cvs)?
  1438. * where MAJOR, MINOR, MICRO, and PATCHLEVEL are numbers, status is one of
  1439. * "pre" (for an alpha release), "rc" (for a release candidate), or "." for a
  1440. * release. As a special case, "a.b.c" was equivalent to "a.b.c.0". We
  1441. * compare the elements in order (major, minor, micro, status, patchlevel,
  1442. * cvs), with "cvs" preceding non-cvs.
  1443. *
  1444. * We would start each development branch with a final version in mind: say,
  1445. * "0.0.8". Our first pre-release would be "0.0.8pre1", followed by (for
  1446. * example) "0.0.8pre2-cvs", "0.0.8pre2", "0.0.8pre3-cvs", "0.0.8rc1",
  1447. * "0.0.8rc2-cvs", and "0.0.8rc2". Finally, we'd release 0.0.8. The stable
  1448. * CVS branch would then be versioned "0.0.8.1-cvs", and any eventual bugfix
  1449. * release would be "0.0.8.1".
  1450. *
  1451. * After 0.1.0, versions are of the format:
  1452. * MAJOR.MINOR.MICRO(.PATCHLEVEL([-.]status_tag)?)?
  1453. * As before, MAJOR, MINOR, MICRO, and PATCHLEVEL are numbers, with an absent
  1454. * number equivalent to 0. All versions _should_ be distinguishable purely by
  1455. * those four numbers; the status tag is purely informational. If we *do*
  1456. * encounter two versions that differ only by status tag, we compare them
  1457. * lexically.
  1458. *
  1459. * Now, we start each development branch with (say) 0.1.1.1-alpha.
  1460. * The patchlevel increments consistently as the status tag changes,
  1461. * for example, as in: 0.1.1.2-alpha, 0.1.1.3-alpha, 0.1.1.4-rc
  1462. * 0.1.1.5-rc, Eventually, we release 0.1.1.6. The next patch release
  1463. * is 0.1.1.7.
  1464. *
  1465. * Between these releases, CVS is versioned with a -cvs tag: after
  1466. * 0.1.1.1-alpha comes 0.1.1.1-alpha-cvs, and so on.
  1467. */
  1468. typedef struct tor_version_t {
  1469. int major;
  1470. int minor;
  1471. int micro;
  1472. /** Release status. For version in the post-0.1 format, this is always
  1473. * VER_RELEASE. */
  1474. enum { VER_PRE=0, VER_RC=1, VER_RELEASE=2, } status;
  1475. int patchlevel;
  1476. /** CVS status. For version in the post-0.1 format, this is always
  1477. * IS_NOT_CVS */
  1478. enum { IS_CVS=0, IS_NOT_CVS=1} cvs;
  1479. char status_tag[MAX_STATUS_TAG_LEN];
  1480. } tor_version_t;
  1481. int router_get_router_hash(const char *s, char *digest);
  1482. int router_get_dir_hash(const char *s, char *digest);
  1483. int router_get_runningrouters_hash(const char *s, char *digest);
  1484. int router_parse_list_from_string(const char **s,
  1485. routerlist_t **dest,
  1486. smartlist_t *good_nickname_list,
  1487. int rr_format,
  1488. time_t published);
  1489. int router_parse_routerlist_from_directory(const char *s,
  1490. routerlist_t **dest,
  1491. crypto_pk_env_t *pkey,
  1492. int check_version,
  1493. int write_to_cache);
  1494. running_routers_t *router_parse_runningrouters(const char *str,
  1495. int write_to_cache);
  1496. routerinfo_t *router_parse_entry_from_string(const char *s, const char *end);
  1497. int router_add_exit_policy_from_string(routerinfo_t *router, const char *s);
  1498. addr_policy_t *router_parse_addr_policy_from_string(const char *s);
  1499. int check_software_version_against_directory(const char *directory,
  1500. int ignoreversion);
  1501. int tor_version_parse(const char *s, tor_version_t *out);
  1502. int tor_version_as_new_as(const char *platform, const char *cutoff);
  1503. int tor_version_compare(tor_version_t *a, tor_version_t *b);
  1504. void assert_addr_policy_ok(addr_policy_t *t);
  1505. #endif