or.h 24 KB

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