or.h 63 KB

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