or.h 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669
  1. /* Copyright 2001,2002 Roger Dingledine, Matej Pfajfar. */
  2. /* See LICENSE for licensing information */
  3. /* $Id$ */
  4. #ifndef __OR_H
  5. #define __OR_H
  6. #include "orconfig.h"
  7. #define SEQUENTIAL_ACI
  8. #include <stdio.h>
  9. #include <stdlib.h>
  10. #include <limits.h>
  11. #ifdef HAVE_UNISTD_H
  12. #include <unistd.h>
  13. #endif
  14. #ifdef HAVE_STRING_H
  15. #include <string.h>
  16. #endif
  17. #ifdef HAVE_SIGNAL_H
  18. #include <signal.h>
  19. #endif
  20. #ifdef HAVE_NETDB_H
  21. #include <netdb.h>
  22. #endif
  23. #ifdef HAVE_CTYPE_H
  24. #include <ctype.h>
  25. #endif
  26. #include "../common/torint.h"
  27. #ifdef HAVE_SYS_POLL_H
  28. #include <sys/poll.h>
  29. #elif HAVE_POLL_H
  30. #include <poll.h>
  31. #else
  32. #include "../common/fakepoll.h"
  33. #endif
  34. #ifdef HAVE_SYS_TYPES_H
  35. #include <sys/types.h> /* Must be included before sys/stat.h for Ultrix */
  36. #endif
  37. #ifdef HAVE_SYS_WAIT_H
  38. #include <sys/wait.h>
  39. #endif
  40. #ifdef HAVE_SYS_FCNTL_H
  41. #include <sys/fcntl.h>
  42. #endif
  43. #ifdef HAVE_FCNTL_H
  44. #include <fcntl.h>
  45. #endif
  46. #ifdef HAVE_SYS_IOCTL_H
  47. #include <sys/ioctl.h>
  48. #endif
  49. #ifdef HAVE_SYS_SOCKET_H
  50. #include <sys/socket.h>
  51. #endif
  52. #ifdef HAVE_SYS_TIME_H
  53. #include <sys/time.h>
  54. #endif
  55. #ifdef HAVE_SYS_STAT_H
  56. #include <sys/stat.h>
  57. #endif
  58. #ifdef HAVE_NETINET_IN_H
  59. #include <netinet/in.h>
  60. #endif
  61. #ifdef HAVE_ARPA_INET_H
  62. #include <arpa/inet.h>
  63. #endif
  64. #ifdef HAVE_ERRNO_H
  65. #include <errno.h>
  66. #endif
  67. #ifdef HAVE_ASSERT_H
  68. #include <assert.h>
  69. #endif
  70. #ifdef HAVE_TIME_H
  71. #include <time.h>
  72. #endif
  73. #ifdef HAVE_WINSOCK_H
  74. #include <winsock.h>
  75. #endif
  76. #if _MSC_VER > 1300
  77. #include <winsock2.h>
  78. #include <ws2tcpip.h>
  79. #elif defined(_MSC_VER)
  80. #include <winsock.h>
  81. #endif
  82. #ifdef MS_WINDOWS
  83. #include <io.h>
  84. #define WIN32_LEAN_AND_MEAN
  85. #include <windows.h>
  86. #define snprintf _snprintf
  87. #endif
  88. #include "../common/crypto.h"
  89. #include "../common/tortls.h"
  90. #include "../common/log.h"
  91. #include "../common/util.h"
  92. #define RECOMMENDED_SOFTWARE_VERSIONS "0.0.2pre8,0.0.2pre9"
  93. #define MAXCONNECTIONS 1000 /* upper bound on max connections.
  94. can be lowered by config file */
  95. #define MAX_BUF_SIZE (640*1024)
  96. #define DEFAULT_BANDWIDTH_OP (1024 * 1000)
  97. #define ACI_TYPE_LOWER 0
  98. #define ACI_TYPE_HIGHER 1
  99. #define ACI_TYPE_BOTH 2
  100. #define _CONN_TYPE_MIN 3
  101. #define CONN_TYPE_OR_LISTENER 3
  102. #define CONN_TYPE_OR 4
  103. #define CONN_TYPE_EXIT 5
  104. #define CONN_TYPE_AP_LISTENER 6
  105. #define CONN_TYPE_AP 7
  106. #define CONN_TYPE_DIR_LISTENER 8
  107. #define CONN_TYPE_DIR 9
  108. #define CONN_TYPE_DNSWORKER 10
  109. #define CONN_TYPE_CPUWORKER 11
  110. #define _CONN_TYPE_MAX 3
  111. #define LISTENER_STATE_READY 0
  112. #define DNSWORKER_STATE_IDLE 0
  113. #define DNSWORKER_STATE_BUSY 1
  114. #define _CPUWORKER_STATE_MIN 0
  115. #define CPUWORKER_STATE_IDLE 0
  116. #define CPUWORKER_STATE_BUSY_ONION 1
  117. #define CPUWORKER_STATE_BUSY_HANDSHAKE 2
  118. #define _CPUWORKER_STATE_MAX 2
  119. #define CPUWORKER_TASK_ONION CPUWORKER_STATE_BUSY_ONION
  120. #define _OR_CONN_STATE_MIN 0
  121. #define OR_CONN_STATE_CONNECTING 0 /* waiting for connect() to finish */
  122. #define OR_CONN_STATE_HANDSHAKING 1 /* SSL is handshaking, not done yet */
  123. #define OR_CONN_STATE_OPEN 2 /* ready to send/receive cells. */
  124. #define _OR_CONN_STATE_MAX 2
  125. #define _EXIT_CONN_STATE_MIN 0
  126. #define EXIT_CONN_STATE_RESOLVING 0 /* waiting for response from dns farm */
  127. #define EXIT_CONN_STATE_CONNECTING 1 /* waiting for connect() to finish */
  128. #define EXIT_CONN_STATE_OPEN 2
  129. #define _EXIT_CONN_STATE_MAX 2
  130. #if 0
  131. #define EXIT_CONN_STATE_CLOSE 3 /* flushing the buffer, then will close */
  132. #define EXIT_CONN_STATE_CLOSE_WAIT 4 /* have sent a destroy, awaiting a confirmation */
  133. #endif
  134. #define _AP_CONN_STATE_MIN 3
  135. #define AP_CONN_STATE_SOCKS_WAIT 3
  136. #define AP_CONN_STATE_OR_WAIT 4
  137. #define AP_CONN_STATE_OPEN 5
  138. #define _AP_CONN_STATE_MAX 5
  139. #define _DIR_CONN_STATE_MIN 0
  140. #define DIR_CONN_STATE_CONNECTING 0 /* client */
  141. #define DIR_CONN_STATE_SENDING_COMMAND 1 /* client */
  142. #define DIR_CONN_STATE_READING 2 /* client */
  143. #define DIR_CONN_STATE_COMMAND_WAIT 3 /* dirserver */
  144. #define DIR_CONN_STATE_WRITING 4 /* dirserver */
  145. #define _DIR_CONN_STATE_MAX 4
  146. #define CIRCUIT_STATE_BUILDING 0 /* I'm the OP, still haven't done all my handshakes */
  147. #define CIRCUIT_STATE_ONIONSKIN_PENDING 1 /* waiting to process the onionskin */
  148. #define CIRCUIT_STATE_OR_WAIT 2 /* I'm the OP, my firsthop is still connecting */
  149. #define CIRCUIT_STATE_OPEN 3 /* onionskin(s) processed, ready to send/receive cells */
  150. #define RELAY_COMMAND_BEGIN 1
  151. #define RELAY_COMMAND_DATA 2
  152. #define RELAY_COMMAND_END 3
  153. #define RELAY_COMMAND_CONNECTED 4
  154. #define RELAY_COMMAND_SENDME 5
  155. #define RELAY_COMMAND_EXTEND 6
  156. #define RELAY_COMMAND_EXTENDED 7
  157. #define RELAY_COMMAND_TRUNCATE 8
  158. #define RELAY_COMMAND_TRUNCATED 9
  159. #define RELAY_HEADER_SIZE 8
  160. /* default cipher function */
  161. #define DEFAULT_CIPHER CRYPTO_CIPHER_AES_CTR
  162. /* Used to en/decrypt onion skins */
  163. #define ONION_CIPHER DEFAULT_CIPHER
  164. /* Used to en/decrypt RELAY cells */
  165. #define CIRCUIT_CIPHER DEFAULT_CIPHER
  166. #define CELL_DIRECTION_IN 1
  167. #define CELL_DIRECTION_OUT 2
  168. #define EDGE_EXIT CONN_TYPE_EXIT
  169. #define EDGE_AP CONN_TYPE_AP
  170. #define CELL_DIRECTION(x) ((x) == EDGE_EXIT ? CELL_DIRECTION_IN : CELL_DIRECTION_OUT)
  171. #define CIRCWINDOW_START 1000
  172. #define CIRCWINDOW_INCREMENT 100
  173. #define STREAMWINDOW_START 500
  174. #define STREAMWINDOW_INCREMENT 50
  175. /* cell commands */
  176. #define CELL_PADDING 0
  177. #define CELL_CREATE 1
  178. #define CELL_CREATED 2
  179. #define CELL_RELAY 3
  180. #define CELL_DESTROY 4
  181. #define CELL_PAYLOAD_SIZE 248
  182. #define CELL_NETWORK_SIZE 256
  183. /* legal characters in a filename */
  184. #define CONFIG_LEGAL_FILENAME_CHARACTERS "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_/"
  185. typedef uint16_t aci_t;
  186. /* cell definition */
  187. typedef struct {
  188. aci_t aci; /* Anonymous Connection Identifier */
  189. unsigned char command;
  190. unsigned char length; /* of payload if relay cell */
  191. uint32_t seq; /* sequence number */
  192. unsigned char payload[CELL_PAYLOAD_SIZE];
  193. } cell_t;
  194. #define CELL_RELAY_COMMAND(c) (*(uint8_t*)((c).payload))
  195. #define SET_CELL_RELAY_COMMAND(c,cmd) (*(uint8_t*)((c).payload) = (cmd))
  196. #define STREAM_ID_SIZE 7
  197. #define SET_CELL_STREAM_ID(c,id) memcpy((c).payload+1,(id),STREAM_ID_SIZE)
  198. #define ZERO_STREAM "\0\0\0\0\0\0\0\0"
  199. struct connection_t {
  200. uint8_t type;
  201. uint8_t state;
  202. uint8_t wants_to_read; /* should we start reading again once
  203. * the bandwidth throttler allows it?
  204. */
  205. uint8_t wants_to_write; /* should we start writing again once
  206. * the bandwidth throttler allows reads?
  207. */
  208. int s; /* our socket */
  209. int poll_index; /* index of this conn into the poll_array */
  210. int marked_for_close; /* should we close this conn on the next
  211. * iteration of the main loop?
  212. */
  213. char *inbuf;
  214. int inbuflen; /* how many bytes are alloc'ed for inbuf? */
  215. int inbuf_datalen; /* how many bytes of data are on inbuf? */
  216. int inbuf_reached_eof; /* did read() return 0 on this conn? */
  217. long timestamp_lastread; /* when was the last time poll() said we could read? */
  218. char *outbuf;
  219. int outbuflen; /* how many bytes are allocated for the outbuf? */
  220. int outbuf_flushlen; /* how much data should we try to flush from the outbuf? */
  221. int outbuf_datalen; /* how much data is there total on the outbuf? */
  222. long timestamp_lastwritten; /* when was the last time poll() said we could write? */
  223. long timestamp_created; /* when was this connection_t created? */
  224. uint32_t bandwidth; /* connection bandwidth. Set to -1 for non-OR conns. */
  225. int receiver_bucket; /* when this hits 0, stop receiving. Every second we
  226. * add 'bandwidth' to this, capping it at 10*bandwidth.
  227. * Set to -1 for non-OR conns.
  228. */
  229. uint32_t addr; /* these two uniquely identify a router. Both in host order. */
  230. uint16_t port; /* if non-zero, they identify the guy on the other end
  231. * of the connection. */
  232. char *address; /* FQDN (or IP) of the guy on the other end.
  233. * strdup into this, because free_connection frees it
  234. */
  235. crypto_pk_env_t *pkey; /* public RSA key for the other side */
  236. /* Used only by OR connections: */
  237. tor_tls *tls;
  238. #ifdef SEQUENTIAL_ACI
  239. uint16_t next_aci; /* Which ACI do we try to use next on this connection?
  240. * This is always in the range 0..1<<15-1.*/
  241. #endif
  242. /* Used only by edge connections: */
  243. char stream_id[STREAM_ID_SIZE];
  244. struct connection_t *next_stream; /* points to the next stream at this edge, if any */
  245. struct crypt_path_t *cpath_layer; /* a pointer to which node in the circ this conn exits at */
  246. int package_window; /* how many more relay cells can i send into the circuit? */
  247. int deliver_window; /* how many more relay cells can end at me? */
  248. int done_sending; /* for half-open connections; not used currently */
  249. int done_receiving;
  250. /* Used only by AP connections: */
  251. char socks_version; /* what socks version are they speaking at me? */
  252. char read_username; /* have i read the username yet? */
  253. char *dest_addr; /* what address and port are this stream's destination? */
  254. uint16_t dest_port; /* host order */
  255. };
  256. typedef struct connection_t connection_t;
  257. #define EXIT_POLICY_ACCEPT 1
  258. #define EXIT_POLICY_REJECT 2
  259. struct exit_policy_t {
  260. char policy_type;
  261. char *string;
  262. char *address;
  263. char *port;
  264. struct exit_policy_t *next;
  265. };
  266. /* config stuff we know about the other ORs in the network */
  267. typedef struct {
  268. char *address;
  269. char *nickname;
  270. uint32_t addr; /* all host order */
  271. uint16_t or_port;
  272. uint16_t ap_port;
  273. uint16_t dir_port;
  274. crypto_pk_env_t *pkey; /* public RSA key */
  275. crypto_pk_env_t *signing_pkey; /* May be null */
  276. /* link info */
  277. uint32_t bandwidth;
  278. struct exit_policy_t *exit_policy;
  279. } routerinfo_t;
  280. #define MAX_ROUTERS_IN_DIR 1024
  281. typedef struct {
  282. routerinfo_t **routers;
  283. int n_routers;
  284. char *software_versions;
  285. } directory_t;
  286. struct crypt_path_t {
  287. /* crypto environments */
  288. crypto_cipher_env_t *f_crypto;
  289. crypto_cipher_env_t *b_crypto;
  290. crypto_dh_env_t *handshake_state;
  291. uint32_t addr;
  292. uint16_t port;
  293. uint8_t state;
  294. #define CPATH_STATE_CLOSED 0
  295. #define CPATH_STATE_AWAITING_KEYS 1
  296. #define CPATH_STATE_OPEN 2
  297. struct crypt_path_t *next;
  298. struct crypt_path_t *prev; /* doubly linked list */
  299. int package_window;
  300. int deliver_window;
  301. };
  302. #define DH_KEY_LEN CRYPTO_DH_SIZE
  303. #define DH_ONIONSKIN_LEN DH_KEY_LEN+16
  304. typedef struct crypt_path_t crypt_path_t;
  305. /* struct for a path (circuit) through the network */
  306. struct circuit_t {
  307. uint32_t n_addr;
  308. uint16_t n_port;
  309. connection_t *p_conn;
  310. connection_t *n_conn; /* for the OR conn, if there is one */
  311. connection_t *p_streams;
  312. connection_t *n_streams;
  313. int package_window;
  314. int deliver_window;
  315. aci_t p_aci; /* circuit identifiers */
  316. aci_t n_aci;
  317. crypto_cipher_env_t *p_crypto; /* used only for intermediate hops */
  318. crypto_cipher_env_t *n_crypto;
  319. crypt_path_t *cpath;
  320. char onionskin[DH_ONIONSKIN_LEN]; /* for storage while onionskin pending */
  321. long timestamp_created;
  322. uint8_t dirty; /* whether this circuit has been used yet */
  323. uint8_t state;
  324. void *next;
  325. };
  326. typedef struct circuit_t circuit_t;
  327. typedef struct {
  328. char *LogLevel;
  329. char *RouterFile;
  330. char *SigningPrivateKeyFile;
  331. char *PrivateKeyFile;
  332. char *CertFile;
  333. char *Nickname;
  334. double CoinWeight;
  335. int Daemon;
  336. int ORPort;
  337. int APPort;
  338. int DirPort;
  339. int MaxConn;
  340. int OnionRouter;
  341. int TrafficShaping;
  342. int LinkPadding;
  343. int IgnoreVersion;
  344. int DirRebuildPeriod;
  345. int DirFetchPeriod;
  346. int KeepalivePeriod;
  347. int MaxOnionsPending;
  348. int NewCircuitPeriod;
  349. int TotalBandwidth;
  350. int NumCpus;
  351. int Role;
  352. int loglevel;
  353. } or_options_t;
  354. /* all the function prototypes go here */
  355. /********************************* buffers.c ***************************/
  356. int buf_new(char **buf, int *buflen, int *buf_datalen);
  357. void buf_free(char *buf);
  358. int read_to_buf(int s, int at_most, char **buf, int *buflen, int *buf_datalen, int *reached_eof);
  359. int read_to_buf_tls(tor_tls *tls, int at_most, char **buf, int *buflen, int *buf_datalen);
  360. int flush_buf(int s, char **buf, int *buflen, int *buf_flushlen, int *buf_datalen);
  361. int flush_buf_tls(tor_tls *tls, char **buf, int *buflen, int *buf_flushlen, int *buf_datalen);
  362. int write_to_buf(char *string, int string_len, char **buf, int *buflen, int *buf_datalen);
  363. int fetch_from_buf(char *string, int string_len, char **buf, int *buflen, int *buf_datalen);
  364. int find_on_inbuf(char *string, int string_len, char *buf, int buf_datalen);
  365. /********************************* circuit.c ***************************/
  366. void circuit_add(circuit_t *circ);
  367. void circuit_remove(circuit_t *circ);
  368. circuit_t *circuit_new(aci_t p_aci, connection_t *p_conn);
  369. void circuit_free(circuit_t *circ);
  370. circuit_t *circuit_enumerate_by_naddr_nport(circuit_t *start, uint32_t naddr, uint16_t nport);
  371. circuit_t *circuit_get_by_aci_conn(aci_t aci, connection_t *conn);
  372. circuit_t *circuit_get_by_conn(connection_t *conn);
  373. circuit_t *circuit_get_newest_open(void);
  374. int circuit_deliver_relay_cell(cell_t *cell, circuit_t *circ,
  375. int cell_direction, crypt_path_t *layer_hint);
  376. int relay_crypt(circuit_t *circ, char *in, int inlen, char cell_direction,
  377. crypt_path_t **layer_hint, char *recognized, connection_t **conn);
  378. int relay_check_recognized(circuit_t *circ, int cell_direction, char *stream, connection_t **conn);
  379. void circuit_resume_edge_reading(circuit_t *circ, int edge_type, crypt_path_t *layer_hint);
  380. int circuit_consider_stop_edge_reading(circuit_t *circ, int edge_type, crypt_path_t *layer_hint);
  381. int circuit_consider_sending_sendme(circuit_t *circ, int edge_type, crypt_path_t *layer_hint);
  382. void circuit_close(circuit_t *circ);
  383. void circuit_about_to_close_connection(connection_t *conn);
  384. void circuit_dump_by_conn(connection_t *conn);
  385. void circuit_expire_unused_circuits(void);
  386. void circuit_launch_new(int failure_status);
  387. int circuit_establish_circuit(void);
  388. void circuit_n_conn_open(connection_t *or_conn);
  389. int circuit_send_next_onion_skin(circuit_t *circ);
  390. int circuit_extend(cell_t *cell, circuit_t *circ);
  391. int circuit_finish_handshake(circuit_t *circ, char *reply);
  392. int circuit_truncated(circuit_t *circ, crypt_path_t *layer);
  393. void assert_cpath_ok(crypt_path_t *c);
  394. void assert_cpath_layer_ok(crypt_path_t *c);
  395. void assert_circuit_ok(circuit_t *c);
  396. /********************************* command.c ***************************/
  397. void command_process_cell(cell_t *cell, connection_t *conn);
  398. /********************************* config.c ***************************/
  399. int getconfig(int argc, char **argv, or_options_t *options);
  400. /********************************* connection.c ***************************/
  401. connection_t *connection_new(int type);
  402. void connection_free(connection_t *conn);
  403. int connection_create_listener(struct sockaddr_in *bindaddr, int type);
  404. int connection_handle_listener_read(connection_t *conn, int new_type);
  405. int connection_tls_start_handshake(connection_t *conn, int receiving);
  406. int connection_connect(connection_t *conn, char *address, uint32_t addr, uint16_t port);
  407. int retry_all_connections(uint16_t or_listenport, uint16_t ap_listenport, uint16_t dir_listenport);
  408. int connection_handle_read(connection_t *conn);
  409. int connection_read_to_buf(connection_t *conn);
  410. int connection_fetch_from_buf(char *string, int len, connection_t *conn);
  411. int connection_find_on_inbuf(char *string, int len, connection_t *conn);
  412. int connection_wants_to_flush(connection_t *conn);
  413. int connection_outbuf_too_full(connection_t *conn);
  414. int connection_flush_buf(connection_t *conn);
  415. int connection_handle_write(connection_t *conn);
  416. int connection_write_to_buf(char *string, int len, connection_t *conn);
  417. int connection_receiver_bucket_should_increase(connection_t *conn);
  418. #define connection_speaks_cells(conn) ((conn)->type == CONN_TYPE_OR)
  419. int connection_is_listener(connection_t *conn);
  420. int connection_state_is_open(connection_t *conn);
  421. int connection_send_destroy(aci_t aci, connection_t *conn);
  422. int connection_process_inbuf(connection_t *conn);
  423. int connection_finished_flushing(connection_t *conn);
  424. void assert_connection_ok(connection_t *conn, time_t now);
  425. /********************************* connection_edge.c ***************************/
  426. int connection_edge_process_inbuf(connection_t *conn);
  427. int connection_edge_send_command(connection_t *fromconn, circuit_t *circ, int relay_command);
  428. int connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, connection_t *conn,
  429. int edge_type, crypt_path_t *layer_hint);
  430. int connection_edge_finished_flushing(connection_t *conn);
  431. int connection_package_raw_inbuf(connection_t *conn);
  432. int connection_consider_sending_sendme(connection_t *conn, int edge_type);
  433. int connection_exit_connect(connection_t *conn);
  434. /********************************* connection_or.c ***************************/
  435. int connection_or_process_inbuf(connection_t *conn);
  436. int connection_or_finished_flushing(connection_t *conn);
  437. connection_t *connection_or_connect(routerinfo_t *router);
  438. int connection_write_cell_to_buf(const cell_t *cellp, connection_t *conn);
  439. int connection_process_cell_from_inbuf(connection_t *conn);
  440. /********************************* cpuworker.c *****************************/
  441. void cpu_init(void);
  442. int connection_cpu_finished_flushing(connection_t *conn);
  443. int connection_cpu_process_inbuf(connection_t *conn);
  444. int cpuworker_main(void *data);
  445. int assign_to_cpuworker(connection_t *cpuworker, unsigned char question_type,
  446. void *task);
  447. /********************************* directory.c ***************************/
  448. void directory_initiate_fetch(routerinfo_t *router);
  449. void directory_set_dirty(void);
  450. int connection_dir_process_inbuf(connection_t *conn);
  451. int connection_dir_finished_flushing(connection_t *conn);
  452. /********************************* dns.c ***************************/
  453. void dns_init(void);
  454. int connection_dns_finished_flushing(connection_t *conn);
  455. int connection_dns_process_inbuf(connection_t *conn);
  456. void dns_cancel_pending_resolve(char *question, connection_t *onlyconn);
  457. int dns_resolve(connection_t *exitconn);
  458. /********************************* main.c ***************************/
  459. void set_privatekey(crypto_pk_env_t *k);
  460. crypto_pk_env_t *get_privatekey(void);
  461. void set_signing_privatekey(crypto_pk_env_t *k);
  462. crypto_pk_env_t *get_signing_privatekey(void);
  463. int connection_add(connection_t *conn);
  464. int connection_remove(connection_t *conn);
  465. void connection_set_poll_socket(connection_t *conn);
  466. connection_t *connection_twin_get_by_addr_port(uint32_t addr, uint16_t port);
  467. connection_t *connection_exact_get_by_addr_port(uint32_t addr, uint16_t port);
  468. connection_t *connection_get_by_type(int type);
  469. connection_t *connection_get_by_type_state(int type, int state);
  470. connection_t *connection_get_by_type_state_lastwritten(int type, int state);
  471. void connection_watch_events(connection_t *conn, short events);
  472. int connection_is_reading(connection_t *conn);
  473. void connection_stop_reading(connection_t *conn);
  474. void connection_start_reading(connection_t *conn);
  475. void connection_stop_writing(connection_t *conn);
  476. void connection_start_writing(connection_t *conn);
  477. int dump_signed_directory_to_string(char *s, int maxlen,
  478. crypto_pk_env_t *private_key);
  479. /* Exported for debugging */
  480. int dump_signed_directory_to_string_impl(char *s, int maxlen,
  481. directory_t *dir,
  482. crypto_pk_env_t *private_key);
  483. int main(int argc, char *argv[]);
  484. /********************************* onion.c ***************************/
  485. int decide_aci_type(uint32_t local_addr, uint16_t local_port,
  486. uint32_t remote_addr, uint16_t remote_port);
  487. int onion_pending_add(circuit_t *circ);
  488. circuit_t *onion_next_task(void);
  489. void onion_pending_remove(circuit_t *circ);
  490. int onionskin_answer(circuit_t *circ, unsigned char *payload, unsigned char *keys);
  491. crypt_path_t *onion_generate_cpath(routerinfo_t **firsthop);
  492. int onion_skin_create(crypto_pk_env_t *router_key,
  493. crypto_dh_env_t **handshake_state_out,
  494. char *onion_skin_out); /* Must be DH_ONIONSKIN_LEN bytes long */
  495. int onion_skin_server_handshake(char *onion_skin, /* DH_ONIONSKIN_LEN bytes long */
  496. crypto_pk_env_t *private_key,
  497. char *handshake_reply_out, /* DH_KEY_LEN bytes long */
  498. char *key_out,
  499. int key_out_len);
  500. int onion_skin_client_handshake(crypto_dh_env_t *handshake_state,
  501. char *handshake_reply,/* Must be DH_KEY_LEN bytes long*/
  502. char *key_out,
  503. int key_out_len);
  504. /********************************* routers.c ***************************/
  505. int learn_my_address(struct sockaddr_in *me);
  506. void router_retry_connections(void);
  507. routerinfo_t *router_pick_directory_server(void);
  508. routerinfo_t *router_get_by_addr_port(uint32_t addr, uint16_t port);
  509. routerinfo_t *router_get_by_pk(crypto_pk_env_t *pk);
  510. void router_get_directory(directory_t **pdirectory);
  511. int router_is_me(uint32_t addr, uint16_t port);
  512. void router_forget_router(uint32_t addr, uint16_t port);
  513. int router_get_list_from_file(char *routerfile);
  514. /* Reads a list of known routers, unsigned. */
  515. int router_get_list_from_string(char *s);
  516. /* Exported for debugging */
  517. int router_get_list_from_string_impl(char *s, directory_t **dest);
  518. /* Reads a signed directory. */
  519. int router_get_dir_from_string(char *s, crypto_pk_env_t *pkey);
  520. /* Exported or debugging */
  521. int router_get_dir_from_string_impl(char *s, directory_t **dest,
  522. crypto_pk_env_t *pkey);
  523. routerinfo_t *router_get_entry_from_string(char **s);
  524. int router_compare_to_exit_policy(connection_t *conn);
  525. void routerinfo_free(routerinfo_t *router);
  526. #endif
  527. /*
  528. Local Variables:
  529. mode:c
  530. indent-tabs-mode:nil
  531. c-basic-offset:2
  532. End:
  533. */