or.h 22 KB

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