or.h 24 KB

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