discard the "bridge list" stubs that i hope i never need.
[tor.git] / src / or / or.h
blob4c6aa1a6d5a7b02879917dad2854b8d12a184b3c
1 /* Copyright (c) 2001 Matej Pfajfar.
2 * Copyright (c) 2001-2004, Roger Dingledine.
3 * Copyright (c) 2004-2007, Roger Dingledine, Nick Mathewson. */
4 /* See LICENSE for licensing information */
5 /* $Id$ */
7 /**
8 * \file or.h
9 * \brief Master header file for Tor-specific functionality.
10 **/
12 #ifndef __OR_H
13 #define __OR_H
14 #define OR_H_ID "$Id$"
16 #include "orconfig.h"
17 #ifdef MS_WINDOWS
18 #define WIN32_WINNT 0x400
19 #define _WIN32_WINNT 0x400
20 #define WIN32_LEAN_AND_MEAN
21 #endif
23 #include <stdio.h>
24 #include <stdlib.h>
25 #ifdef HAVE_UNISTD_H
26 #include <unistd.h>
27 #endif
28 #ifdef HAVE_STRING_H
29 #include <string.h>
30 #endif
31 #ifdef HAVE_SIGNAL_H
32 #include <signal.h>
33 #endif
34 #ifdef HAVE_NETDB_H
35 #include <netdb.h>
36 #endif
37 #ifdef HAVE_CTYPE_H
38 #include <ctype.h>
39 #endif
40 #ifdef HAVE_SYS_PARAM_H
41 #include <sys/param.h> /* FreeBSD needs this to know what version it is */
42 #endif
43 #include "../common/torint.h"
44 #ifdef HAVE_SYS_WAIT_H
45 #include <sys/wait.h>
46 #endif
47 #ifdef HAVE_SYS_FCNTL_H
48 #include <sys/fcntl.h>
49 #endif
50 #ifdef HAVE_FCNTL_H
51 #include <fcntl.h>
52 #endif
53 #ifdef HAVE_SYS_IOCTL_H
54 #include <sys/ioctl.h>
55 #endif
56 #ifdef HAVE_SYS_SOCKET_H
57 #include <sys/socket.h>
58 #endif
59 #ifdef HAVE_SYS_UN_H
60 #include <sys/un.h>
61 #endif
62 #ifdef HAVE_SYS_TIME_H
63 #include <sys/time.h>
64 #endif
65 #ifdef HAVE_SYS_STAT_H
66 #include <sys/stat.h>
67 #endif
68 #ifdef HAVE_NETINET_IN_H
69 #include <netinet/in.h>
70 #endif
71 #ifdef HAVE_ARPA_INET_H
72 #include <arpa/inet.h>
73 #endif
74 #ifdef HAVE_ERRNO_H
75 #include <errno.h>
76 #endif
77 #ifdef HAVE_ASSERT_H
78 #include <assert.h>
79 #endif
80 #ifdef HAVE_TIME_H
81 #include <time.h>
82 #endif
84 /** Upper bound on maximum simultaneous connections; can be lowered by
85 * config file. */
86 #if defined(CYGWIN) || defined(__CYGWIN__)
87 /* http://archives.seul.org/or/talk/Aug-2006/msg00210.html */
88 #define MAXCONNECTIONS 3200
89 #else
90 /* very high by default. "nobody should need more than this..." */
91 #define MAXCONNECTIONS 15000
92 #endif
94 #ifdef MS_WINDOWS
95 /* No, we don't need to redefine FD_SETSIZE before including winsock:
96 * we use libevent now, and libevent handles the select() stuff. Yes,
97 * some documents imply that we need to redefine anyway if we're using
98 * select() anywhere in our application or in anything it links to: these
99 * documents are either the holy texts of a cargo cult of network
100 * programmers, or more likely a simplification of what's going on for
101 * people who haven't read winsock[2].h for themselves.
103 #if defined(_MSC_VER) && (_MSC_VER <= 1300)
104 #include <winsock.h>
105 #else
106 #include <winsock2.h>
107 #include <ws2tcpip.h>
108 #endif
109 #endif
111 #ifdef MS_WINDOWS
112 #include <io.h>
113 #include <process.h>
114 #include <direct.h>
115 #include <windows.h>
116 #define snprintf _snprintf
117 #endif
119 #include <event.h>
121 #include "../common/crypto.h"
122 #include "../common/tortls.h"
123 #include "../common/log.h"
124 #include "../common/compat.h"
125 #include "../common/container.h"
126 #include "../common/util.h"
127 #include "../common/torgzip.h"
129 /* These signals are defined to help control_signal_act work.
131 #ifndef SIGHUP
132 #define SIGHUP 1
133 #endif
134 #ifndef SIGINT
135 #define SIGINT 2
136 #endif
137 #ifndef SIGUSR1
138 #define SIGUSR1 10
139 #endif
140 #ifndef SIGUSR2
141 #define SIGUSR2 12
142 #endif
143 #ifndef SIGTERM
144 #define SIGTERM 15
145 #endif
146 /* Controller signals start at a high number so we don't
147 * conflict with system-defined signals. */
148 #define SIGNEWNYM 129
149 #define SIGCLEARDNSCACHE 130
151 #if (SIZEOF_CELL_T != 0)
152 /* On Irix, stdlib.h defines a cell_t type, so we need to make sure
153 * that our stuff always calls cell_t something different. */
154 #define cell_t tor_cell_t
155 #endif
157 /** Length of longest allowable configured nickname. */
158 #define MAX_NICKNAME_LEN 19
159 /** Length of a router identity encoded as a hexadecimal digest, plus
160 * possible dollar sign. */
161 #define MAX_HEX_NICKNAME_LEN (HEX_DIGEST_LEN+1)
162 /** Maximum length of verbose router identifier: dollar sign, hex ID digest,
163 * equal sign or tilde, nickname. */
164 #define MAX_VERBOSE_NICKNAME_LEN (1+HEX_DIGEST_LEN+1+MAX_NICKNAME_LEN)
166 /** Maximum size, in bytes, for resized buffers. */
167 #define MAX_BUF_SIZE ((1<<24)-1) /* 16MB-1 */
168 /** Maximum size, in bytes, for any directory object that we've downloaded. */
169 #define MAX_DIR_DL_SIZE MAX_BUF_SIZE
171 /** For http parsing: Maximum number of bytes we'll accept in the headers
172 * of an HTTP request or response. */
173 #define MAX_HEADERS_SIZE 50000
174 /** Maximum size, in bytes, for any directory object that we're accepting
175 * as an upload. */
176 #define MAX_DIR_UL_SIZE 500000
178 /** How long do we keep DNS cache entries before purging them (regardless of
179 * their TTL)? */
180 #define MAX_DNS_ENTRY_AGE (30*60)
181 /** How long do we cache/tell clients to cache DNS records when no TTL is
182 * known? */
183 #define DEFAULT_DNS_TTL (30*60)
184 /** How long can a TTL be before we stop believing it? */
185 #define MAX_DNS_TTL (3*60*60)
186 /** How small can a TTL be before we stop believing it? */
187 #define MIN_DNS_TTL (60)
189 /** How often do we rotate onion keys? */
190 #define MIN_ONION_KEY_LIFETIME (7*24*60*60)
191 /** How often do we rotate TLS contexts? */
192 #define MAX_SSL_KEY_LIFETIME (2*60*60)
194 /** How old do we allow a router to get before removing it
195 * from the router list? In seconds. */
196 #define ROUTER_MAX_AGE (60*60*48)
197 /** How old can a router get before we (as a server) will no longer
198 * consider it live? In seconds. */
199 #define ROUTER_MAX_AGE_TO_PUBLISH (60*60*20)
200 /** How old do we let a saved descriptor get before force-removing it? */
201 #define OLD_ROUTER_DESC_MAX_AGE (60*60*24*5)
202 /** How old do we let a networkstatus get before ignoring it? */
203 #define NETWORKSTATUS_MAX_AGE (60*60*24)
205 /** Possible rules for generating circuit IDs on an OR connection. */
206 typedef enum {
207 CIRC_ID_TYPE_LOWER=0, /**< Pick from 0..1<<15-1. */
208 CIRC_ID_TYPE_HIGHER=1, /**< Pick from 1<<15..1<<16-1. */
209 /** The other side of a connection is an OP: never create circuits to it,
210 * and let it use any circuit ID it wants. */
211 CIRC_ID_TYPE_NEITHER=2
212 } circ_id_type_t;
214 #define _CONN_TYPE_MIN 3
215 /** Type for sockets listening for OR connections. */
216 #define CONN_TYPE_OR_LISTENER 3
217 /** A bidirectional TLS connection transmitting a sequence of cells.
218 * May be from an OR to an OR, or from an OP to an OR. */
219 #define CONN_TYPE_OR 4
220 /** A TCP connection from an onion router to a stream's destination. */
221 #define CONN_TYPE_EXIT 5
222 /** Type for sockets listening for SOCKS connections. */
223 #define CONN_TYPE_AP_LISTENER 6
224 /** A SOCKS proxy connection from the user application to the onion
225 * proxy. */
226 #define CONN_TYPE_AP 7
227 /** Type for sockets listening for HTTP connections to the directory server. */
228 #define CONN_TYPE_DIR_LISTENER 8
229 /** Type for HTTP connections to the directory server. */
230 #define CONN_TYPE_DIR 9
231 /** Connection from the main process to a CPU worker process. */
232 #define CONN_TYPE_CPUWORKER 10
233 /** Type for listening for connections from user interface process. */
234 #define CONN_TYPE_CONTROL_LISTENER 11
235 /** Type for connections from user interface process. */
236 #define CONN_TYPE_CONTROL 12
237 /** Type for sockets listening for transparent connections redirected by pf or
238 * netfilter. */
239 #define CONN_TYPE_AP_TRANS_LISTENER 13
240 /** Type for sockets listening for transparent connections redirected by
241 * natd. */
242 #define CONN_TYPE_AP_NATD_LISTENER 14
243 /** Type for sockets listening for DNS requests. */
244 #define CONN_TYPE_AP_DNS_LISTENER 15
245 #define _CONN_TYPE_MAX 15
247 #define CONN_IS_EDGE(x) \
248 ((x)->type == CONN_TYPE_EXIT || (x)->type == CONN_TYPE_AP)
250 /** State for any listener connection. */
251 #define LISTENER_STATE_READY 0
253 #define _CPUWORKER_STATE_MIN 1
254 /** State for a connection to a cpuworker process that's idle. */
255 #define CPUWORKER_STATE_IDLE 1
256 /** State for a connection to a cpuworker process that's processing a
257 * handshake. */
258 #define CPUWORKER_STATE_BUSY_ONION 2
259 #define _CPUWORKER_STATE_MAX 2
261 #define CPUWORKER_TASK_ONION CPUWORKER_STATE_BUSY_ONION
263 #define _OR_CONN_STATE_MIN 1
264 /** State for a connection to an OR: waiting for connect() to finish. */
265 #define OR_CONN_STATE_CONNECTING 1
266 /** State for a connection to an OR: waiting for proxy command to flush. */
267 #define OR_CONN_STATE_PROXY_FLUSHING 2
268 /** State for a connection to an OR: waiting for proxy response. */
269 #define OR_CONN_STATE_PROXY_READING 3
270 /** State for a connection to an OR: SSL is handshaking, not done yet. */
271 #define OR_CONN_STATE_HANDSHAKING 4
272 /** State for a connection to an OR: Ready to send/receive cells. */
273 #define OR_CONN_STATE_OPEN 5
274 #define _OR_CONN_STATE_MAX 5
276 #define _EXIT_CONN_STATE_MIN 1
277 /** State for an exit connection: waiting for response from dns farm. */
278 #define EXIT_CONN_STATE_RESOLVING 1
279 /** State for an exit connection: waiting for connect() to finish. */
280 #define EXIT_CONN_STATE_CONNECTING 2
281 /** State for an exit connection: open and ready to transmit data. */
282 #define EXIT_CONN_STATE_OPEN 3
283 /** State for an exit connection: waiting to be removed. */
284 #define EXIT_CONN_STATE_RESOLVEFAILED 4
285 #define _EXIT_CONN_STATE_MAX 4
287 /* The AP state values must be disjoint from the EXIT state values. */
288 #define _AP_CONN_STATE_MIN 5
289 /** State for a SOCKS connection: waiting for SOCKS request. */
290 #define AP_CONN_STATE_SOCKS_WAIT 5
291 /** State for a SOCKS connection: got a y.onion URL; waiting to receive
292 * rendezvous descriptor. */
293 #define AP_CONN_STATE_RENDDESC_WAIT 6
294 /** The controller will attach this connection to a circuit; it isn't our
295 * job to do so. */
296 #define AP_CONN_STATE_CONTROLLER_WAIT 7
297 /** State for a SOCKS connection: waiting for a completed circuit. */
298 #define AP_CONN_STATE_CIRCUIT_WAIT 8
299 /** State for a SOCKS connection: sent BEGIN, waiting for CONNECTED. */
300 #define AP_CONN_STATE_CONNECT_WAIT 9
301 /** State for a SOCKS connection: sent RESOLVE, waiting for RESOLVED. */
302 #define AP_CONN_STATE_RESOLVE_WAIT 10
303 /** State for a SOCKS connection: ready to send and receive. */
304 #define AP_CONN_STATE_OPEN 11
305 /** State for a transparent natd connection: waiting for original
306 * destination. */
307 #define AP_CONN_STATE_NATD_WAIT 12
308 #define _AP_CONN_STATE_MAX 12
310 /** True iff the AP_CONN_STATE_* value <b>s</b> means that the corresponding
311 * edge connection is not attached to any circuit. */
312 #define AP_CONN_STATE_IS_UNATTACHED(s) \
313 ((s) <= AP_CONN_STATE_CIRCUIT_WAIT || (s) == AP_CONN_STATE_NATD_WAIT)
315 #define _DIR_CONN_STATE_MIN 1
316 /** State for connection to directory server: waiting for connect(). */
317 #define DIR_CONN_STATE_CONNECTING 1
318 /** State for connection to directory server: sending HTTP request. */
319 #define DIR_CONN_STATE_CLIENT_SENDING 2
320 /** State for connection to directory server: reading HTTP response. */
321 #define DIR_CONN_STATE_CLIENT_READING 3
322 /** State for connection to directory server: happy and finished. */
323 #define DIR_CONN_STATE_CLIENT_FINISHED 4
324 /** State for connection at directory server: waiting for HTTP request. */
325 #define DIR_CONN_STATE_SERVER_COMMAND_WAIT 5
326 /** State for connection at directory server: sending HTTP response. */
327 #define DIR_CONN_STATE_SERVER_WRITING 6
328 #define _DIR_CONN_STATE_MAX 6
330 /** True iff the purpose of <b>conn</b> means that it's a server-side
331 * directory connection. */
332 #define DIR_CONN_IS_SERVER(conn) ((conn)->purpose == DIR_PURPOSE_SERVER)
334 #define _CONTROL_CONN_STATE_MIN 1
335 /** State for a control connection: Authenticated and accepting v1 commands. */
336 #define CONTROL_CONN_STATE_OPEN 1
337 /** State for a control connection: Waiting for authentication; speaking
338 * protocol v1. */
339 #define CONTROL_CONN_STATE_NEEDAUTH 2
340 #define _CONTROL_CONN_STATE_MAX 2
342 #define _DIR_PURPOSE_MIN 1
343 /** A connection to a directory server: download a directory. */
344 #define DIR_PURPOSE_FETCH_DIR 1
345 /** A connection to a directory server: download just the list
346 * of running routers. */
347 #define DIR_PURPOSE_FETCH_RUNNING_LIST 2
348 /** A connection to a directory server: download a rendezvous
349 * descriptor. */
350 #define DIR_PURPOSE_FETCH_RENDDESC 3
351 /** A connection to a directory server: set after a rendezvous
352 * descriptor is downloaded. */
353 #define DIR_PURPOSE_HAS_FETCHED_RENDDESC 4
354 /** A connection to a directory server: download one or more network-status
355 * objects */
356 #define DIR_PURPOSE_FETCH_NETWORKSTATUS 5
357 /** A connection to a directory server: download one or more server
358 * descriptors. */
359 #define DIR_PURPOSE_FETCH_SERVERDESC 6
360 /** A connection to a directory server: download one or more extra-info
361 * documents. */
362 #define DIR_PURPOSE_FETCH_EXTRAINFO 7
363 /** A connection to a directory server: upload a server descriptor. */
364 #define DIR_PURPOSE_UPLOAD_DIR 8
365 /** A connection to a directory server: upload a rendezvous
366 * descriptor. */
367 #define DIR_PURPOSE_UPLOAD_RENDDESC 9
368 /** Purpose for connection at a directory server. */
369 #define DIR_PURPOSE_SERVER 10
370 #define _DIR_PURPOSE_MAX 10
372 #define _EXIT_PURPOSE_MIN 1
373 /** This exit stream wants to do an ordinary connect. */
374 #define EXIT_PURPOSE_CONNECT 1
375 /** This exit stream wants to do a resolve (either normal or reverse). */
376 #define EXIT_PURPOSE_RESOLVE 2
377 #define _EXIT_PURPOSE_MAX 2
379 /** Circuit state: I'm the origin, still haven't done all my handshakes. */
380 #define CIRCUIT_STATE_BUILDING 0
381 /** Circuit state: Waiting to process the onionskin. */
382 #define CIRCUIT_STATE_ONIONSKIN_PENDING 1
383 /** Circuit state: I'd like to deliver a create, but my n_conn is still
384 * connecting. */
385 #define CIRCUIT_STATE_OR_WAIT 2
386 /** Circuit state: onionskin(s) processed, ready to send/receive cells. */
387 #define CIRCUIT_STATE_OPEN 3
389 #define _CIRCUIT_PURPOSE_MIN 1
391 /* these circuits were initiated elsewhere */
392 #define _CIRCUIT_PURPOSE_OR_MIN 1
393 /** OR-side circuit purpose: normal circuit, at OR. */
394 #define CIRCUIT_PURPOSE_OR 1
395 /** OR-side circuit purpose: At OR, from Bob, waiting for intro from Alices. */
396 #define CIRCUIT_PURPOSE_INTRO_POINT 2
397 /** OR-side circuit purpose: At OR, from Alice, waiting for Bob. */
398 #define CIRCUIT_PURPOSE_REND_POINT_WAITING 3
399 /** OR-side circuit purpose: At OR, both circuits have this purpose. */
400 #define CIRCUIT_PURPOSE_REND_ESTABLISHED 4
401 #define _CIRCUIT_PURPOSE_OR_MAX 4
403 /* these circuits originate at this node */
405 /* here's how circ client-side purposes work:
406 * normal circuits are C_GENERAL.
407 * circuits that are c_introducing are either on their way to
408 * becoming open, or they are open and waiting for a
409 * suitable rendcirc before they send the intro.
410 * circuits that are c_introduce_ack_wait have sent the intro,
411 * but haven't gotten a response yet.
412 * circuits that are c_establish_rend are either on their way
413 * to becoming open, or they are open and have sent the
414 * establish_rendezvous cell but haven't received an ack.
415 * circuits that are c_rend_ready are open and have received a
416 * rend ack, but haven't heard from bob yet. if they have a
417 * buildstate->pending_final_cpath then they're expecting a
418 * cell from bob, else they're not.
419 * circuits that are c_rend_ready_intro_acked are open, and
420 * some intro circ has sent its intro and received an ack.
421 * circuits that are c_rend_joined are open, have heard from
422 * bob, and are talking to him.
424 /** Client-side circuit purpose: Normal circuit, with cpath. */
425 #define CIRCUIT_PURPOSE_C_GENERAL 5
426 /** Client-side circuit purpose: at Alice, connecting to intro point. */
427 #define CIRCUIT_PURPOSE_C_INTRODUCING 6
428 /** Client-side circuit purpose: at Alice, sent INTRODUCE1 to intro point,
429 * waiting for ACK/NAK. */
430 #define CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT 7
431 /** Client-side circuit purpose: at Alice, introduced and acked, closing. */
432 #define CIRCUIT_PURPOSE_C_INTRODUCE_ACKED 8
433 /** Client-side circuit purpose: at Alice, waiting for ack. */
434 #define CIRCUIT_PURPOSE_C_ESTABLISH_REND 9
435 /** Client-side circuit purpose: at Alice, waiting for Bob. */
436 #define CIRCUIT_PURPOSE_C_REND_READY 10
437 /** Client-side circuit purpose: at Alice, waiting for Bob, INTRODUCE
438 * has been acknowledged. */
439 #define CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED 11
440 /** Client-side circuit purpose: at Alice, rendezvous established. */
441 #define CIRCUIT_PURPOSE_C_REND_JOINED 12
443 /** Hidden-service-side circuit purpose: at Bob, waiting for introductions. */
444 #define CIRCUIT_PURPOSE_S_ESTABLISH_INTRO 13
445 /** Hidden-service-side circuit purpose: at Bob, successfully established
446 * intro. */
447 #define CIRCUIT_PURPOSE_S_INTRO 14
448 /** Hidden-service-side circuit purpose: at Bob, connecting to rend point. */
449 #define CIRCUIT_PURPOSE_S_CONNECT_REND 15
450 /** Hidden-service-side circuit purpose: at Bob, rendezvous established. */
451 #define CIRCUIT_PURPOSE_S_REND_JOINED 16
452 /** A testing circuit; not meant to be used for actual traffic. */
453 #define CIRCUIT_PURPOSE_TESTING 17
454 /** A controller made this circuit and Tor should not use it. */
455 #define CIRCUIT_PURPOSE_CONTROLLER 18
456 #define _CIRCUIT_PURPOSE_MAX 18
458 /** True iff the circuit purpose <b>p</b> is for a circuit that
459 * originated at this node. */
460 #define CIRCUIT_PURPOSE_IS_ORIGIN(p) ((p)>_CIRCUIT_PURPOSE_OR_MAX)
461 #define CIRCUIT_IS_ORIGIN(c) (CIRCUIT_PURPOSE_IS_ORIGIN((c)->purpose))
463 /** How many circuits do we want simultaneously in-progress to handle
464 * a given stream? */
465 #define MIN_CIRCUITS_HANDLING_STREAM 2
467 #define RELAY_COMMAND_BEGIN 1
468 #define RELAY_COMMAND_DATA 2
469 #define RELAY_COMMAND_END 3
470 #define RELAY_COMMAND_CONNECTED 4
471 #define RELAY_COMMAND_SENDME 5
472 #define RELAY_COMMAND_EXTEND 6
473 #define RELAY_COMMAND_EXTENDED 7
474 #define RELAY_COMMAND_TRUNCATE 8
475 #define RELAY_COMMAND_TRUNCATED 9
476 #define RELAY_COMMAND_DROP 10
477 #define RELAY_COMMAND_RESOLVE 11
478 #define RELAY_COMMAND_RESOLVED 12
479 #define RELAY_COMMAND_BEGIN_DIR 13
481 #define RELAY_COMMAND_ESTABLISH_INTRO 32
482 #define RELAY_COMMAND_ESTABLISH_RENDEZVOUS 33
483 #define RELAY_COMMAND_INTRODUCE1 34
484 #define RELAY_COMMAND_INTRODUCE2 35
485 #define RELAY_COMMAND_RENDEZVOUS1 36
486 #define RELAY_COMMAND_RENDEZVOUS2 37
487 #define RELAY_COMMAND_INTRO_ESTABLISHED 38
488 #define RELAY_COMMAND_RENDEZVOUS_ESTABLISHED 39
489 #define RELAY_COMMAND_INTRODUCE_ACK 40
491 /* Reasons why an OR connection is closed */
492 #define END_OR_CONN_REASON_DONE 1
493 #define END_OR_CONN_REASON_TCP_REFUSED 2
494 #define END_OR_CONN_REASON_OR_IDENTITY 3
495 #define END_OR_CONN_REASON_TLS_CONNRESET 4 /* tls connection reset by peer */
496 #define END_OR_CONN_REASON_TLS_TIMEOUT 5
497 #define END_OR_CONN_REASON_TLS_NO_ROUTE 6 /* no route to host/net */
498 #define END_OR_CONN_REASON_TLS_IO_ERROR 7 /* tls read/write error */
499 #define END_OR_CONN_REASON_TLS_MISC 8
501 /* Reasons why we (or a remote OR) might close a stream. See tor-spec.txt for
502 * documentation of these. */
503 #define END_STREAM_REASON_MISC 1
504 #define END_STREAM_REASON_RESOLVEFAILED 2
505 #define END_STREAM_REASON_CONNECTREFUSED 3
506 #define END_STREAM_REASON_EXITPOLICY 4
507 #define END_STREAM_REASON_DESTROY 5
508 #define END_STREAM_REASON_DONE 6
509 #define END_STREAM_REASON_TIMEOUT 7
510 /* 8 is unallocated for historical reasons. */
511 #define END_STREAM_REASON_HIBERNATING 9
512 #define END_STREAM_REASON_INTERNAL 10
513 #define END_STREAM_REASON_RESOURCELIMIT 11
514 #define END_STREAM_REASON_CONNRESET 12
515 #define END_STREAM_REASON_TORPROTOCOL 13
516 #define END_STREAM_REASON_NOTDIRECTORY 14
518 /* These high-numbered end reasons are not part of the official spec,
519 * and are not intended to be put in relay end cells. They are here
520 * to be more informative when sending back socks replies to the
521 * application. */
522 /* XXXX 256 is no longer used; feel free to reuse it. */
523 /** We were unable to attach the connection to any circuit at all. */
524 /* XXXX the ways we use this one don't make a lot of sense. */
525 #define END_STREAM_REASON_CANT_ATTACH 257
526 /** We can't connect to any directories at all, so we killed our streams
527 * before they can time out. */
528 #define END_STREAM_REASON_NET_UNREACHABLE 258
529 /** This is a SOCKS connection, and the client used (or misused) the SOCKS
530 * protocol in a way we couldn't handle. */
531 #define END_STREAM_REASON_SOCKSPROTOCOL 259
532 /** This is a transparent proxy connection, but we can't extract the original
533 * target address:port. */
534 #define END_STREAM_REASON_CANT_FETCH_ORIG_DEST 260
535 /** This is a connection on the NATD port, and the destination IP:Port was
536 * either ill-formed or out-of-range. */
537 #define END_STREAM_REASON_INVALID_NATD_DEST 261
539 /** Bitwise-and this value with endreason to mask out all flags. */
540 #define END_STREAM_REASON_MASK 511
542 /** Bitwise-or this with the argument to control_event_stream_status
543 * to indicate that the reason came from an END cell. */
544 #define END_STREAM_REASON_FLAG_REMOTE 512
545 /** Bitwise-or this with the argument to control_event_stream_status
546 * to indicate that we already sent a CLOSED stream event. */
547 #define END_STREAM_REASON_FLAG_ALREADY_SENT_CLOSED 1024
548 /** Bitwise-or this with endreason to indicate that we already sent
549 * a socks reply, and no further reply needs to be sent from
550 * connection_mark_unattached_ap(). */
551 #define END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED 2048
553 /** Reason for remapping an AP connection's address: we have a cached
554 * answer. */
555 #define REMAP_STREAM_SOURCE_CACHE 1
556 /** Reason for remapping an AP connection's address: the exit node told us an
557 * answer. */
558 #define REMAP_STREAM_SOURCE_EXIT 2
560 /* 'type' values to use in RESOLVED cells. Specified in tor-spec.txt. */
561 #define RESOLVED_TYPE_HOSTNAME 0
562 #define RESOLVED_TYPE_IPV4 4
563 #define RESOLVED_TYPE_IPV6 6
564 #define RESOLVED_TYPE_ERROR_TRANSIENT 0xF0
565 #define RESOLVED_TYPE_ERROR 0xF1
567 /* Negative reasons are internal: we never send them in a DESTROY or TRUNCATE
568 * call; they only go to the controller for tracking */
569 /** We couldn't build a path for this circuit. */
570 #define END_CIRC_REASON_NOPATH -2
571 /** Catch-all "other" reason for closing origin circuits. */
572 #define END_CIRC_AT_ORIGIN -1
574 /* Reasons why we (or a remote OR) might close a circuit. See tor-spec.txt for
575 * documentation of these. */
576 #define _END_CIRC_REASON_MIN 0
577 #define END_CIRC_REASON_NONE 0
578 #define END_CIRC_REASON_TORPROTOCOL 1
579 #define END_CIRC_REASON_INTERNAL 2
580 #define END_CIRC_REASON_REQUESTED 3
581 #define END_CIRC_REASON_HIBERNATING 4
582 #define END_CIRC_REASON_RESOURCELIMIT 5
583 #define END_CIRC_REASON_CONNECTFAILED 6
584 #define END_CIRC_REASON_OR_IDENTITY 7
585 #define END_CIRC_REASON_OR_CONN_CLOSED 8
586 #define END_CIRC_REASON_FINISHED 9
587 #define END_CIRC_REASON_TIMEOUT 10
588 #define END_CIRC_REASON_DESTROYED 11
589 #define END_CIRC_REASON_NOSUCHSERVICE 12
590 #define _END_CIRC_REASON_MAX 12
592 /* OR this with the argument to circuit_mark_for_close, or
593 * control_event_circuit_status to indicate that the reason came from a
594 * destroy or truncate cell. */
595 #define END_CIRC_REASON_FLAG_REMOTE 512
597 /** Length of 'y' portion of 'y.onion' URL. */
598 #define REND_SERVICE_ID_LEN 16
600 #define CELL_DIRECTION_IN 1
601 #define CELL_DIRECTION_OUT 2
603 #ifdef TOR_PERF
604 #define CIRCWINDOW_START 10000
605 #define CIRCWINDOW_INCREMENT 1000
606 #define STREAMWINDOW_START 5000
607 #define STREAMWINDOW_INCREMENT 500
608 #else
609 /** Initial value for both sides of a circuit transmission window when the
610 * circuit is initialized. Measured in cells. */
611 #define CIRCWINDOW_START 1000
612 /** Amount to increment a circuit window when we get a circuit SENDME. */
613 #define CIRCWINDOW_INCREMENT 100
614 /** Initial value on both sides of a stream transmission window when the
615 * stream is initialized. Measured in cells. */
616 #define STREAMWINDOW_START 500
617 /** Amount to increment a stream window when we get a stream SENDME. */
618 #define STREAMWINDOW_INCREMENT 50
619 #endif
621 /* cell commands */
622 #define CELL_PADDING 0
623 #define CELL_CREATE 1
624 #define CELL_CREATED 2
625 #define CELL_RELAY 3
626 #define CELL_DESTROY 4
627 #define CELL_CREATE_FAST 5
628 #define CELL_CREATED_FAST 6
630 /** How long to test reachability before complaining to the user. */
631 #define TIMEOUT_UNTIL_UNREACHABILITY_COMPLAINT (20*60)
633 /** Legal characters in a nickname. */
634 #define LEGAL_NICKNAME_CHARACTERS \
635 "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
637 /** Name to use in client TLS certificates if no nickname is given. */
638 #define DEFAULT_CLIENT_NICKNAME "client"
640 /** Number of bytes in a SOCKS4 header. */
641 #define SOCKS4_NETWORK_LEN 8
643 /** Specified SOCKS5 status codes. */
644 typedef enum {
645 SOCKS5_SUCCEEDED = 0x00,
646 SOCKS5_GENERAL_ERROR = 0x01,
647 SOCKS5_NOT_ALLOWED = 0x02,
648 SOCKS5_NET_UNREACHABLE = 0x03,
649 SOCKS5_HOST_UNREACHABLE = 0x04,
650 SOCKS5_CONNECTION_REFUSED = 0x05,
651 SOCKS5_TTL_EXPIRED = 0x06,
652 SOCKS5_COMMAND_NOT_SUPPORTED = 0x07,
653 SOCKS5_ADDRESS_TYPE_NOT_SUPPORTED = 0x08,
654 } socks5_reply_status_t;
657 * Relay payload:
658 * Relay command [1 byte]
659 * Recognized [2 bytes]
660 * Stream ID [2 bytes]
661 * Partial SHA-1 [4 bytes]
662 * Length [2 bytes]
663 * Relay payload [498 bytes]
666 /** Number of bytes in a cell, minus cell header. */
667 #define CELL_PAYLOAD_SIZE 509
668 /** Number of bytes in a cell transmitted over the network. */
669 #define CELL_NETWORK_SIZE 512
671 /** Number of bytes in a relay cell's header (not including general cell
672 * header). */
673 #define RELAY_HEADER_SIZE (1+2+2+4+2)
674 /** Largest number of bytes that can fit in a relay cell payload. */
675 #define RELAY_PAYLOAD_SIZE (CELL_PAYLOAD_SIZE-RELAY_HEADER_SIZE)
677 typedef struct cell_t cell_t;
678 /** Parsed onion routing cell. All communication between nodes
679 * is via cells. */
680 struct cell_t {
681 uint16_t circ_id; /**< Circuit which received the cell. */
682 uint8_t command; /**< Type of the cell: one of PADDING, CREATE, RELAY,
683 * or DESTROY. */
684 char payload[CELL_PAYLOAD_SIZE]; /**< Cell body. */
687 typedef struct packed_cell_t packed_cell_t;
688 /** A cell as packed for writing to the network. */
689 struct packed_cell_t {
690 struct packed_cell_t *next; /**< Next cell queued on this circuit. */
691 char body[CELL_NETWORK_SIZE]; /**< Cell as packed for network. */
694 /** A queue of cells on a circuit, waiting to be added to the
695 * or_connection_t's outbuf. */
696 typedef struct cell_queue_t {
697 packed_cell_t *head; /**< The first cell, or NULL if the queue is empty. */
698 packed_cell_t *tail; /**< The last cell, or NULL if the queue is empty. */
699 int n; /**< The number of cells in the queue. */
700 } cell_queue_t;
702 /** Beginning of a RELAY cell payload. */
703 typedef struct {
704 uint8_t command; /**< The end-to-end relay command. */
705 uint16_t recognized; /**< Used to tell whether cell is for us. */
706 uint16_t stream_id; /**< Which stream is this cell associated with? */
707 char integrity[4]; /**< Used to tell whether cell is corrupted. */
708 uint16_t length; /**< How long is the payload body? */
709 } relay_header_t;
711 typedef struct buf_t buf_t;
712 typedef struct socks_request_t socks_request_t;
714 /* Values for connection_t.magic: used to make sure that downcasts (casts from
715 * connection_t to foo_connection_t) are safe. */
716 #define BASE_CONNECTION_MAGIC 0x7C3C304Eu
717 #define OR_CONNECTION_MAGIC 0x7D31FF03u
718 #define EDGE_CONNECTION_MAGIC 0xF0374013u
719 #define DIR_CONNECTION_MAGIC 0x9988ffeeu
720 #define CONTROL_CONNECTION_MAGIC 0x8abc765du
722 /** Description of a connection to another host or process, and associated
723 * data.
725 * A connection is named based on what it's connected to -- an "OR
726 * connection" has a Tor node on the other end, an "exit
727 * connection" has a website or other server on the other end, and an
728 * "AP connection" has an application proxy (and thus a user) on the
729 * other end.
731 * Every connection has a type and a state. Connections never change
732 * their type, but can go through many state changes in their lifetime.
734 * Every connection has two associated input and output buffers.
735 * Listeners don't use them. For non-listener connections, incoming
736 * data is appended to conn->inbuf, and outgoing data is taken from
737 * conn->outbuf. Connections differ primarily in the functions called
738 * to fill and drain these buffers.
740 typedef struct connection_t {
741 uint32_t magic; /**< For memory debugging: must equal one of
742 * *_CONNECTION_MAGIC. */
744 uint8_t type; /**< What kind of connection is this? */
745 uint8_t state; /**< Current state of this connection. */
746 uint8_t purpose; /**< Only used for DIR and EXIT types currently. */
748 /* The next fields are all one-bit booleans. Some are only applicable
749 * to connection subtypes, but we hold them here anyway, to save space.
750 * (Currently, they all fit into a single byte.) */
751 unsigned read_blocked_on_bw:1; /**< Boolean: should we start reading again
752 * once the bandwidth throttler allows it? */
753 unsigned write_blocked_on_bw:1; /**< Boolean: should we start writing again
754 * once the bandwidth throttler allows reads? */
755 unsigned hold_open_until_flushed:1; /**< Despite this connection's being
756 * marked for close, do we flush it
757 * before closing it? */
758 unsigned int inbuf_reached_eof:1; /**< Boolean: did read() return 0 on this
759 * conn? */
760 unsigned int edge_has_sent_end:1; /**< For debugging; only used on edge
761 * connections. Set once we've set the stream end,
762 * and check in connection_about_to_close_connection().
764 /** Edge connections only: true if we've blocked writing until the
765 * circuit has fewer queued cells. */
766 unsigned int edge_blocked_on_circ:1;
767 /** Used for OR conns that shouldn't get any new circs attached to them. */
768 unsigned int or_is_obsolete:1;
769 /** For AP connections only. If 1, and we fail to reach the chosen exit,
770 * stop requiring it. */
771 unsigned int chosen_exit_optional:1;
773 int s; /**< Our socket; -1 if this connection is closed, or has no
774 * socket. */
775 int conn_array_index; /**< Index into the global connection array. */
776 struct event *read_event; /**< Libevent event structure. */
777 struct event *write_event; /**< Libevent event structure. */
778 buf_t *inbuf; /**< Buffer holding data read over this connection. */
779 buf_t *outbuf; /**< Buffer holding data to write over this connection. */
780 size_t outbuf_flushlen; /**< How much data should we try to flush from the
781 * outbuf? */
782 time_t timestamp_lastread; /**< When was the last time libevent said we could
783 * read? */
784 time_t timestamp_lastwritten; /**< When was the last time libevent said we
785 * could write? */
786 time_t timestamp_created; /**< When was this connection_t created? */
788 /* XXXX020 make this ipv6-capable */
789 int socket_family; /**< Address family of this connection's socket. Usually
790 * AF_INET, but it can also be AF_UNIX, or in the future
791 * AF_INET6 */
792 uint32_t addr; /**< IP of the other side of the connection; used to identify
793 * routers, along with port. */
794 uint16_t port; /**< If non-zero, port on the other end
795 * of the connection. */
796 uint16_t marked_for_close; /**< Should we close this conn on the next
797 * iteration of the main loop? (If true, holds
798 * the line number where this connection was
799 * marked.) */
800 const char *marked_for_close_file; /**< For debugging: in which file were
801 * we marked for close? */
802 char *address; /**< FQDN (or IP) of the guy on the other end.
803 * strdup into this, because free_connection frees it. */
804 /** Annother connection that's connected to this one in lieu of a socket. */
805 struct connection_t *linked_conn;
807 /* XXXX020 NM move these up to the other 1-bit flags. */
808 unsigned int linked:1; /**< True if there is, or has been, a linked_conn. */
809 /** True iff we'd like to be notified about read events from the
810 * linked conn. */
811 unsigned int reading_from_linked_conn:1;
812 /** True iff we're willing to write to the linked conn. */
813 unsigned int writing_to_linked_conn:1;
814 /** True iff we're currently able to read on the linked conn, and our
815 * read_event should be made active with libevent. */
816 unsigned int active_on_link:1;
818 /* XXXX020 move this into a subtype!!! */
819 struct evdns_server_port *dns_server_port;
821 } connection_t;
823 /** Subtype of connection_t for an "OR connection" -- that is, one that speaks
824 * cells over TLS. */
825 typedef struct or_connection_t {
826 connection_t _base;
828 /** Hash of the public RSA key for the other side's identity key, or zeroes
829 * if the other side hasn't shown us a valid identity key. */
830 char identity_digest[DIGEST_LEN];
831 char *nickname; /**< Nickname of OR on other side (if any). */
833 tor_tls_t *tls; /**< TLS connection state. */
834 int tls_error; /**< Last tor_tls error code. */
835 /** Whether we are using this conn for any client traffic. If we're
836 * not, we can rate limit it further. */
837 uint8_t client_used:1;
839 circ_id_type_t circ_id_type:2; /**< When we send CREATE cells along this
840 * connection, which half of the space should
841 * we use? */
842 uint16_t next_circ_id; /**< Which circ_id do we try to use next on
843 * this connection? This is always in the
844 * range 0..1<<15-1. */
846 time_t timestamp_lastempty; /**< When was the outbuf last completely empty?*/
848 /* bandwidth* and read_bucket only used by ORs in OPEN state: */
849 int bandwidthrate; /**< Bytes/s added to the bucket. (OPEN ORs only.) */
850 int bandwidthburst; /**< Max bucket size for this conn. (OPEN ORs only.) */
851 int read_bucket; /**< When this hits 0, stop receiving. Every second we
852 * add 'bandwidthrate' to this, capping it at
853 * bandwidthburst. (OPEN ORs only) */
854 int n_circuits; /**< How many circuits use this connection as p_conn or
855 * n_conn ? */
857 /** Double-linked ring of circuits with queued cells waiting for room to
858 * free up on this connection's outbuf. Every time we pull cells from a
859 * circuit, we advance this pointer to the next circuit in the ring. */
860 struct circuit_t *active_circuits;
861 struct or_connection_t *next_with_same_id; /**< Next connection with same
862 * identity digest as this one. */
863 } or_connection_t;
865 /** Subtype of connection_t for an "edge connection" -- that is, a socks (ap)
866 * connection, or an exit. */
867 typedef struct edge_connection_t {
868 connection_t _base;
870 struct edge_connection_t *next_stream; /**< Points to the next stream at this
871 * edge, if any */
872 struct crypt_path_t *cpath_layer; /**< A pointer to which node in the circ
873 * this conn exits at. */
874 int package_window; /**< How many more relay cells can I send into the
875 * circuit? */
876 int deliver_window; /**< How many more relay cells can end at me? */
878 /** Nickname of planned exit node -- used with .exit support. */
879 char *chosen_exit_name;
881 socks_request_t *socks_request; /**< SOCKS structure describing request (AP
882 * only.) */
883 struct circuit_t *on_circuit; /**< The circuit (if any) that this edge
884 * connection is using. */
886 uint32_t address_ttl; /**< TTL for address-to-addr mapping on exit
887 * connection. Exit connections only. */
889 uint16_t stream_id; /**< The stream ID used for this edge connection on its
890 * circuit */
892 /** The reason why this connection is closing; passed to the controller. */
893 uint16_t end_reason;
895 /** Quasi-global identifier for this connection; used for control.c */
896 /* XXXX NM This can get re-used after 2**32 streams */
897 uint32_t global_identifier;
899 /** Bytes read since last call to control_event_stream_bandwidth_used() */
900 uint32_t n_read;
902 /** Bytes written since last call to control_event_stream_bandwidth_used() */
903 uint32_t n_written;
905 char rend_query[REND_SERVICE_ID_LEN+1]; /**< What rendezvous service are we
906 * querying for? (AP only) */
908 /** Number of times we've reassigned this application connection to
909 * a new circuit. We keep track because the timeout is longer if we've
910 * already retried several times. */
911 uint8_t num_socks_retries;
913 /** If this is a DNSPort connection, this field holds the pending DNS
914 * request that we're going to try to answer. */
915 struct evdns_server_request *dns_server_request;
917 } edge_connection_t;
919 /** Subtype of connection_t for an "directory connection" -- that is, an HTTP
920 * connection to retrieve or serve directory material. */
921 typedef struct dir_connection_t {
922 connection_t _base;
924 char *requested_resource; /**< Which 'resource' did we ask the directory
925 * for? */
926 unsigned int dirconn_direct:1; /**< Is this dirconn direct, or via Tor? */
928 /* Used only for server sides of some dir connections, to implement
929 * "spooling" of directory material to the outbuf. Otherwise, we'd have
930 * to append everything to the outbuf in one enormous chunk. */
931 /** What exactly are we spooling right now? */
932 enum {
933 DIR_SPOOL_NONE=0, DIR_SPOOL_SERVER_BY_DIGEST, DIR_SPOOL_SERVER_BY_FP,
934 DIR_SPOOL_EXTRA_BY_DIGEST, DIR_SPOOL_EXTRA_BY_FP,
935 DIR_SPOOL_CACHED_DIR, DIR_SPOOL_NETWORKSTATUS
936 } dir_spool_src : 3;
937 /** List of fingerprints for networkstatuses or desriptors to be spooled. */
938 smartlist_t *fingerprint_stack;
939 /** A cached_dir_t object that we're currently spooling out */
940 struct cached_dir_t *cached_dir;
941 /** The current offset into cached_dir. */
942 off_t cached_dir_offset;
943 /** The zlib object doing on-the-fly compression for spooled data. */
944 tor_zlib_state_t *zlib_state;
946 char rend_query[REND_SERVICE_ID_LEN+1]; /**< What rendezvous service are we
947 * querying for? */
949 char identity_digest[DIGEST_LEN]; /**< Hash of the public RSA key for
950 * the directory server's signing key. */
952 } dir_connection_t;
954 /** Subtype of connection_t for an connection to a controller. */
955 typedef struct control_connection_t {
956 connection_t _base;
958 uint32_t event_mask; /**< Bitfield: which events does this controller
959 * care about? */
960 unsigned int use_long_names:1; /**< True if we should use long nicknames
961 * on this (v1) connection. Only settable
962 * via v1 controllers. */
963 /** For control connections only. If set, we send extended info with control
964 * events as appropriate. */
965 unsigned int use_extended_events:1;
967 uint32_t incoming_cmd_len;
968 uint32_t incoming_cmd_cur_len;
969 char *incoming_cmd;
970 /* Used only by control v0 connections */
971 uint16_t incoming_cmd_type;
972 } control_connection_t;
974 /** Cast a connection_t subtype pointer to a connection_t **/
975 #define TO_CONN(c) (&(((c)->_base)))
976 /** Helper macro: Given a pointer to to._base, of type from*, return &to. */
977 #define DOWNCAST(to, ptr) ((to*)SUBTYPE_P(ptr, to, _base))
979 /** Convert a connection_t* to an or_connection_t*; assert if the cast is
980 * invalid. */
981 static or_connection_t *TO_OR_CONN(connection_t *);
982 /** Convert a connection_t* to a dir_connection_t*; assert if the cast is
983 * invalid. */
984 static dir_connection_t *TO_DIR_CONN(connection_t *);
985 /** Convert a connection_t* to an edge_connection_t*; assert if the cast is
986 * invalid. */
987 static edge_connection_t *TO_EDGE_CONN(connection_t *);
988 /** Convert a connection_t* to an control_connection_t*; assert if the cast is
989 * invalid. */
990 static control_connection_t *TO_CONTROL_CONN(connection_t *);
992 static INLINE or_connection_t *TO_OR_CONN(connection_t *c)
994 tor_assert(c->magic == OR_CONNECTION_MAGIC);
995 return DOWNCAST(or_connection_t, c);
997 static INLINE dir_connection_t *TO_DIR_CONN(connection_t *c)
999 tor_assert(c->magic == DIR_CONNECTION_MAGIC);
1000 return DOWNCAST(dir_connection_t, c);
1002 static INLINE edge_connection_t *TO_EDGE_CONN(connection_t *c)
1004 tor_assert(c->magic == EDGE_CONNECTION_MAGIC);
1005 return DOWNCAST(edge_connection_t, c);
1007 static INLINE control_connection_t *TO_CONTROL_CONN(connection_t *c)
1009 tor_assert(c->magic == CONTROL_CONNECTION_MAGIC);
1010 return DOWNCAST(control_connection_t, c);
1013 typedef enum {
1014 ADDR_POLICY_ACCEPT=1,
1015 ADDR_POLICY_REJECT=2,
1016 } addr_policy_action_t;
1018 /** A linked list of policy rules */
1019 typedef struct addr_policy_t {
1020 addr_policy_action_t policy_type; /**< What to do when the policy matches.*/
1021 char *string; /**< String representation of this rule. */
1023 /* XXXX020 make this ipv6-capable */
1024 uint32_t addr; /**< Base address to accept or reject. */
1025 uint32_t msk; /**< Accept/reject all addresses <b>a</b> such that
1026 * a &amp; msk == <b>addr</b> &amp; msk . */
1027 uint16_t prt_min; /**< Lowest port number to accept/reject. */
1028 uint16_t prt_max; /**< Highest port number to accept/reject. */
1030 struct addr_policy_t *next; /**< Next rule in list. */
1031 } addr_policy_t;
1033 /** A cached_dir_t represents a cacheable directory object, along with its
1034 * compressed form. */
1035 typedef struct cached_dir_t {
1036 char *dir; /**< Contents of this object */
1037 char *dir_z; /**< Compressed contents of this object. */
1038 size_t dir_len; /**< Length of <b>dir</b> */
1039 size_t dir_z_len; /**< Length of <b>dir_z</b> */
1040 time_t published; /**< When was this object published */
1041 int refcnt; /**< Reference count for this cached_dir_t. */
1042 } cached_dir_t;
1044 /** Enum used to remember where a signed_descriptor_t is stored and how to
1045 * manage the memory for signed_descriptor_body. */
1046 typedef enum {
1047 /** The descriptor isn't stored on disk at all: the copy in memory is
1048 * canonical; the saved_offset field is meaningless. */
1049 SAVED_NOWHERE=0,
1050 /** The descriptor is stored in the cached_routers file: the
1051 * signed_descriptor_body is meaningless; the signed_descriptor_len and
1052 * saved_offset are used to index into the mmaped cache file. */
1053 SAVED_IN_CACHE,
1054 /** The descriptor is stored in the cached_routers.new file: the
1055 * signed_descriptor_body and saved_offset fields are both set. */
1056 /* FFFF (We could also mmap the file and grow the mmap as needed, or
1057 * lazy-load the descriptor text by using seek and read. We don't, for
1058 * now.)
1060 SAVED_IN_JOURNAL
1061 } saved_location_t;
1063 /** Information about our plans for retrying downloads for a downloadable
1064 * object. */
1065 typedef struct download_status_t {
1066 time_t next_attempt_at; /**< When should we try downloading this descriptor
1067 * again? */
1068 uint8_t n_download_failures; /**< Number of failures trying to download the
1069 * most recent descriptor. */
1070 } download_status_t;
1072 /** Information need to cache an onion router's descriptor. */
1073 typedef struct signed_descriptor_t {
1074 /** Pointer to the raw server descriptor. Not necessarily NUL-terminated.
1075 * If saved_location is SAVED_IN_CACHE, this pointer is null. */
1076 char *signed_descriptor_body;
1077 /** Length of the server descriptor. */
1078 size_t signed_descriptor_len;
1079 /** Digest of the server descriptor, computed as specified in dir-spec.txt */
1080 char signed_descriptor_digest[DIGEST_LEN];
1081 /** Identity digest of the router. */
1082 char identity_digest[DIGEST_LEN];
1083 /** Declared publication time of the descriptor */
1084 time_t published_on;
1085 /** For routerdescs only: digest of the corresponding extrainfo. */
1086 char extra_info_digest[DIGEST_LEN];
1087 /** For routerdescs only: Status of downloading the corresponding
1088 * extrainfo. */
1089 download_status_t ei_dl_status;
1090 /** Where is the descriptor saved? */
1091 saved_location_t saved_location ;
1092 /** If saved_location is SAVED_IN_CACHE or SAVED_IN_JOURNAL, the offset of
1093 * this descriptor in the corresponding file. */
1094 off_t saved_offset;
1095 /* If true, we do not ever try to save this object in the cache. */
1096 unsigned int do_not_cache : 1;
1097 /* If true, this item is meant to represent an extrainfo. */
1098 unsigned int is_extrainfo : 1;
1099 } signed_descriptor_t;
1101 /** Information about another onion router in the network. */
1102 typedef struct {
1103 signed_descriptor_t cache_info;
1104 char *address; /**< Location of OR: either a hostname or an IP address. */
1105 char *nickname; /**< Human-readable OR name. */
1107 uint32_t addr; /**< IPv4 address of OR, in host order. */
1108 uint16_t or_port; /**< Port for TLS connections. */
1109 uint16_t dir_port; /**< Port for HTTP directory connections. */
1111 crypto_pk_env_t *onion_pkey; /**< Public RSA key for onions. */
1112 crypto_pk_env_t *identity_pkey; /**< Public RSA key for signing. */
1114 char *platform; /**< What software/operating system is this OR using? */
1116 /* link info */
1117 uint32_t bandwidthrate; /**< How many bytes does this OR add to its token
1118 * bucket per second? */
1119 uint32_t bandwidthburst; /**< How large is this OR's token bucket? */
1120 /** How many bytes/s is this router known to handle? */
1121 uint32_t bandwidthcapacity;
1122 addr_policy_t *exit_policy; /**< What streams will this OR permit
1123 * to exit? */
1124 long uptime; /**< How many seconds the router claims to have been up */
1125 smartlist_t *declared_family; /**< Nicknames of router which this router
1126 * claims are its family. */
1127 char *contact_info; /**< Declared contact info for this router. */
1128 unsigned int is_hibernating:1; /**< Whether the router claims to be
1129 * hibernating */
1130 unsigned int has_old_dnsworkers:1; /**< Whether the router is using
1131 * dnsworker code. */
1132 unsigned int caches_extra_info:1; /**< Whether the router caches and serves
1133 * extrainfo documents. */
1135 /* local info */
1136 unsigned int is_running:1; /**< As far as we know, is this OR currently
1137 * running? */
1138 unsigned int is_valid:1; /**< Has a trusted dirserver validated this OR?
1139 * (For Authdir: Have we validated this OR?)
1141 unsigned int is_named:1; /**< Do we believe the nickname that this OR gives
1142 * us? */
1143 unsigned int is_fast:1; /** Do we think this is a fast OR? */
1144 unsigned int is_stable:1; /** Do we think this is a stable OR? */
1145 unsigned int is_possible_guard:1; /**< Do we think this is an OK guard? */
1146 unsigned int is_exit:1; /**< Do we think this is an OK exit? */
1147 unsigned int is_bad_exit:1; /**< Do we think this exit is censored, borked,
1148 * or otherwise nasty? */
1150 /** Tor can use this router for general positions in circuits. */
1151 #define ROUTER_PURPOSE_GENERAL 0
1152 /** Tor should avoid using this router for circuit-building. */
1153 #define ROUTER_PURPOSE_CONTROLLER 1
1154 /** Tor should use this router only for bridge positions in circuits. */
1155 #define ROUTER_PURPOSE_BRIDGE 1
1156 /*XXXX020 Should both of the above be 1? -NM */
1157 uint8_t purpose; /** What positions in a circuit is this router good for? */
1159 /* The below items are used only by authdirservers for
1160 * reachability testing. */
1161 /** When was the last time we could reach this OR? */
1162 time_t last_reachable;
1163 /** When did we start testing reachability for this OR? */
1164 time_t testing_since;
1165 /** How many times has a descriptor been posted and we believed
1166 * this router to be unreachable? We only actually warn on the third. */
1167 int num_unreachable_notifications;
1169 /** What position is this descriptor within routerlist->routers? -1 for
1170 * none. */
1171 int routerlist_index;
1172 } routerinfo_t;
1174 /** DOCDOC */
1175 #define EXTRAINFO_PURPOSE_GENERAL -1
1177 /** Information needed to keep and cache a signed extra-info document. */
1178 typedef struct extrainfo_t {
1179 signed_descriptor_t cache_info;
1180 /** The router's nickname. */
1181 char nickname[MAX_NICKNAME_LEN+1];
1182 /** True iff we found the right key for this extra-info, verified the
1183 * signature, and found it to be bad. */
1184 unsigned int bad_sig : 1;
1185 /** If present, we didn't have the right key to verify this extra-info,
1186 * so this is a copy of the signature in the document. */
1187 char *pending_sig;
1188 /** Length of pending_sig. */
1189 size_t pending_sig_len;
1190 } extrainfo_t;
1192 /** Contents of a single router entry in a network status object.
1194 typedef struct routerstatus_t {
1195 time_t published_on; /**< When was this router published? */
1196 char nickname[MAX_NICKNAME_LEN+1]; /**< The nickname this router says it
1197 * has. */
1198 char identity_digest[DIGEST_LEN]; /**< Digest of the router's identity
1199 * key. */
1200 char descriptor_digest[DIGEST_LEN]; /**< Digest of the router's most recent
1201 * descriptor. */
1202 uint32_t addr; /**< IPv4 address for this router. */
1203 uint16_t or_port; /**< OR port for this router. */
1204 uint16_t dir_port; /**< Directory port for this router. */
1205 unsigned int is_exit:1; /**< True iff this router is a good exit. */
1206 unsigned int is_stable:1; /**< True iff this router stays up a long time. */
1207 unsigned int is_fast:1; /**< True iff this router has good bandwidth. */
1208 unsigned int is_running:1; /**< True iff this router is up. */
1209 unsigned int is_named:1; /**< True iff "nickname" belongs to this router. */
1210 unsigned int is_valid:1; /**< True iff this router is validated. */
1211 unsigned int is_v2_dir:1; /**< True iff this router can serve directory
1212 * information with v2 of the directory
1213 * protocol. (All directory caches cache v1
1214 * directories.) */
1215 unsigned int is_possible_guard:1; /**< True iff this router would be a good
1216 * choice as an entry guard. */
1217 unsigned int is_bad_exit:1; /**< True iff this node is a bad choice for
1218 * an exit node. */
1219 unsigned int is_bad_directory:1; /**< Do we think this directory is junky,
1220 * underpowered, or otherwise useless? */
1221 /** True iff we know version info for this router. (i.e., a "v" entry was
1222 * included.) We'll replace all these with a big tor_version_t or a char[]
1223 * if the number of traits we care about ever becomes incredibly big. */
1224 unsigned int version_known:1;
1225 /** True iff this router is a version that supports BEGIN_DIR cells. */
1226 unsigned int version_supports_begindir:1;
1227 /** True iff this router is a version that we can post extrainfo docs to. */
1228 unsigned int version_supports_extrainfo_upload:1;
1230 /** True if we, as a directory mirror, want to download the corresponding
1231 * routerinfo from the authority who gave us this routerstatus. (That is,
1232 * if we don't have the routerinfo, and if we haven't already tried to get it
1233 * from this authority.)
1235 unsigned int need_to_mirror:1;
1236 } routerstatus_t;
1238 /** Our "local" or combined view of the info from all networkstatus objects
1239 * about a single router. */
1240 typedef struct local_routerstatus_t {
1241 /** What do we believe to be the case about this router? In this field,
1242 * descriptor_digest represents the descriptor we would most like to use for
1243 * this router. */
1244 routerstatus_t status;
1245 time_t last_dir_503_at; /**< When did this router last tell us that it
1246 * was too busy to serve directory info? */
1247 download_status_t dl_status;
1248 unsigned int name_lookup_warned:1; /**< Have we warned the user for referring
1249 * to this (unnamed) router by nickname?
1251 } local_routerstatus_t;
1253 /** How many times will we try to download a router's descriptor before giving
1254 * up? */
1255 #define MAX_ROUTERDESC_DOWNLOAD_FAILURES 8
1257 /** Contents of a v2 (non-consensus, non-vote) network status object. */
1258 typedef struct networkstatus_t {
1259 /** When did we receive the network-status document? */
1260 time_t received_on;
1262 /** What was the digest of the document? */
1263 char networkstatus_digest[DIGEST_LEN];
1265 unsigned int is_recent; /**< Is this recent enough to influence running
1266 * status? */
1268 /* These fields come from the actual network-status document.*/
1269 time_t published_on; /**< Declared publication date. */
1271 char *source_address; /**< Canonical directory server hostname. */
1272 uint32_t source_addr; /**< Canonical directory server IP. */
1273 uint16_t source_dirport; /**< Canonical directory server dirport. */
1275 unsigned int binds_names:1; /**< True iff this directory server binds
1276 * names. */
1277 unsigned int recommends_versions:1; /**< True iff this directory server
1278 * recommends client and server software
1279 * versions. */
1280 unsigned int lists_bad_exits:1; /**< True iff this directory server marks
1281 * malfunctioning exits as bad. */
1282 /** True iff this directory server marks malfunctioning directories as
1283 * bad. */
1284 unsigned int lists_bad_directories:1;
1286 char identity_digest[DIGEST_LEN]; /**< Digest of signing key. */
1287 char *contact; /**< How to contact directory admin? (may be NULL). */
1288 crypto_pk_env_t *signing_key; /**< Key used to sign this directory. */
1289 char *client_versions; /**< comma-separated list of recommended client
1290 * versions. */
1291 char *server_versions; /**< comma-separated list of recommended server
1292 * versions. */
1294 smartlist_t *entries; /**< List of routerstatus_t*. This list is kept
1295 * sorted by identity_digest. */
1296 } networkstatus_t;
1298 /** DOCDOC */
1299 typedef struct vote_routerstatus_t {
1300 routerstatus_t status;
1301 uint64_t flags;
1302 char *version;
1303 } vote_routerstatus_t;
1305 /* DOCDOC */
1306 typedef struct networkstatus_voter_info_t {
1307 char *nickname;
1308 char identity_digest[DIGEST_LEN];
1309 char *address;
1310 uint32_t addr;
1311 uint16_t dir_port;
1312 uint16_t or_port;
1313 char *contact;
1314 char vote_digest[DIGEST_LEN]; /* consensus only. */
1315 char signing_key_digest[DIGEST_LEN]; /* This part is _not_ signed. */
1317 char *pending_signature;
1318 int pending_signature_len;
1319 unsigned int bad_signature : 1;
1320 unsigned int good_signature : 1;
1321 } networkstatus_voter_info_t;
1323 /*XXXX020 rename to networkstatus_t once it works. */
1324 /** DOCDOC is vote or consensus. */
1325 typedef struct networkstatus_vote_t {
1326 int is_vote;
1327 time_t published; /* vote only. */
1328 time_t valid_after;
1329 time_t fresh_until;
1330 time_t valid_until;
1331 int vote_seconds;
1332 int dist_seconds;
1334 char *client_versions;
1335 char *server_versions;
1336 smartlist_t *known_flags;
1338 smartlist_t *voters; /* list of networkstatus_voter_info_t */
1340 struct authority_cert_t *cert; /* vote only. */
1342 char networkstatus_digest[DIGEST_LEN];
1344 smartlist_t *routerstatus_list; /* holds vote_routerstatus_t if is_vote,
1345 * otherwise just routerstatus_t. */
1346 } networkstatus_vote_t;
1348 /** Contents of a directory of onion routers. */
1349 typedef struct {
1350 /** Map from server identity digest to a member of routers. */
1351 digestmap_t *identity_map;
1352 /** Map from server descriptor digest to a signed_descriptor_t from
1353 * routers or old_routers. */
1354 digestmap_t *desc_digest_map;
1355 /** Map from extra-info digest to an extrainfo_t. Only exists for
1356 * routers in routers or old_routers. */
1357 digestmap_t *extra_info_map;
1358 /** Map from extra-info digests to a signed_descriptor_t for a router
1359 * descriptor having that extra-info digest. Only exists for
1360 * routers in routers or old_routers. */
1361 digestmap_t *desc_by_eid_map;
1362 /** List of routerinfo_t for all currently live routers we know. */
1363 smartlist_t *routers;
1364 /** List of signed_descriptor_t for older router descriptors we're
1365 * caching. */
1366 smartlist_t *old_routers;
1367 /** Mmaped file holding server descriptors. If present, any router whose
1368 * cache_info.saved_location == SAVED_IN_CACHE is stored in this file
1369 * starting at cache_info.saved_offset */
1370 tor_mmap_t *mmap_descriptors;
1371 /** Mmaped file holding extra-info documents. */
1372 tor_mmap_t *mmap_extrainfo;
1373 } routerlist_t;
1375 /** Information on router used when extending a circuit. We don't need a
1376 * full routerinfo_t to extend: we only need addr:port:keyid to build an OR
1377 * connection, and onion_key to create the onionskin. Note that for onehop
1378 * general-purpose tunnels, the onion_key is NULL. */
1379 typedef struct extend_info_t {
1380 char nickname[MAX_HEX_NICKNAME_LEN+1]; /**< This router's nickname for
1381 * display. */
1382 char identity_digest[DIGEST_LEN]; /**< Hash of this router's identity key. */
1383 uint16_t port; /**< OR port. */
1384 uint8_t router_purpose; /**< General, controller, or bridge. */
1385 uint32_t addr; /**< IP address in host order. */
1386 crypto_pk_env_t *onion_key; /**< Current onionskin key. */
1387 } extend_info_t;
1389 /** Certificate for v3 directory protocol: binds long-term authority identity
1390 * keys to medium-term authority signing keys. */
1391 typedef struct authority_cert_t {
1392 signed_descriptor_t cache_info;
1393 crypto_pk_env_t *identity_key;
1394 crypto_pk_env_t *signing_key;
1395 time_t expires;
1396 } authority_cert_t;
1398 /** Bitfield enum type listing types of directory authority/directory
1399 * server. */
1400 typedef enum {
1401 NO_AUTHORITY = 0,
1402 V1_AUTHORITY = 1 << 0,
1403 V2_AUTHORITY = 1 << 1,
1404 V3_AUTHORITY = 1 << 2,
1405 HIDSERV_AUTHORITY = 1 << 3,
1406 BRIDGE_AUTHORITY = 1 << 4,
1407 EXTRAINFO_CACHE = 1 << 5, /* not precisely an authority type. */
1408 } authority_type_t;
1410 #define CRYPT_PATH_MAGIC 0x70127012u
1412 /** Holds accounting information for a single step in the layered encryption
1413 * performed by a circuit. Used only at the client edge of a circuit. */
1414 typedef struct crypt_path_t {
1415 uint32_t magic;
1417 /* crypto environments */
1418 /** Encryption key and counter for cells heading towards the OR at this
1419 * step. */
1420 crypto_cipher_env_t *f_crypto;
1421 /** Encryption key and counter for cells heading back from the OR at this
1422 * step. */
1423 crypto_cipher_env_t *b_crypto;
1425 /** Digest state for cells heading towards the OR at this step. */
1426 crypto_digest_env_t *f_digest; /* for integrity checking */
1427 /** Digest state for cells heading away from the OR at this step. */
1428 crypto_digest_env_t *b_digest;
1430 /** Current state of Diffie-Hellman key negotiation with the OR at this
1431 * step. */
1432 crypto_dh_env_t *dh_handshake_state;
1433 /** Current state of 'fast' (non-PK) key negotiation with the OR at this
1434 * step. Used to save CPU when TLS is already providing all the
1435 * authentication, secrecy, and integrity we need, and we're already
1436 * distinguishable from an OR.
1438 char fast_handshake_state[DIGEST_LEN];
1439 /** Negotiated key material shared with the OR at this step. */
1440 char handshake_digest[DIGEST_LEN];/* KH in tor-spec.txt */
1442 /** Information to extend to the OR at this step. */
1443 extend_info_t *extend_info;
1445 /** Is the circuit built to this step? Must be one of:
1446 * - CPATH_STATE_CLOSED (The circuit has not been extended to this step)
1447 * - CPATH_STATE_AWAITING_KEYS (We have sent an EXTEND/CREATE to this step
1448 * and not received an EXTENDED/CREATED)
1449 * - CPATH_STATE_OPEN (The circuit has been extended to this step) */
1450 uint8_t state;
1451 #define CPATH_STATE_CLOSED 0
1452 #define CPATH_STATE_AWAITING_KEYS 1
1453 #define CPATH_STATE_OPEN 2
1454 struct crypt_path_t *next; /**< Link to next crypt_path_t in the circuit.
1455 * (The list is circular, so the last node
1456 * links to the first.) */
1457 struct crypt_path_t *prev; /**< Link to previous crypt_path_t in the
1458 * circuit. */
1460 int package_window; /**< How many bytes are we allowed to originate ending
1461 * at this step? */
1462 int deliver_window; /**< How many bytes are we willing to deliver originating
1463 * at this step? */
1464 } crypt_path_t;
1466 #define CPATH_KEY_MATERIAL_LEN (20*2+16*2)
1468 #define DH_KEY_LEN DH_BYTES
1469 #define ONIONSKIN_CHALLENGE_LEN (PKCS1_OAEP_PADDING_OVERHEAD+\
1470 CIPHER_KEY_LEN+\
1471 DH_KEY_LEN)
1472 #define ONIONSKIN_REPLY_LEN (DH_KEY_LEN+DIGEST_LEN)
1473 #define REND_COOKIE_LEN DIGEST_LEN
1475 /** Information used to build a circuit. */
1476 typedef struct {
1477 /** Intended length of the final circuit. */
1478 int desired_path_len;
1479 /** How to extend to the planned exit node. */
1480 extend_info_t *chosen_exit;
1481 /** Whether every node in the circ must have adequate uptime. */
1482 int need_uptime;
1483 /** Whether every node in the circ must have adequate capacity. */
1484 int need_capacity;
1485 /** Whether the last hop was picked with exiting in mind. */
1486 int is_internal;
1487 /** Did we pick this as a one-hop tunnel (not safe for other conns)?
1488 * These are for encrypted connections that exit to this router, not
1489 * for arbitrary exits from the circuit. */
1490 int onehop_tunnel;
1491 /** The crypt_path_t to append after rendezvous: used for rendezvous. */
1492 crypt_path_t *pending_final_cpath;
1493 /** How many times has building a circuit for this task failed? */
1494 int failure_count;
1495 /** At what time should we give up on this task? */
1496 time_t expiry_time;
1497 } cpath_build_state_t;
1499 #define ORIGIN_CIRCUIT_MAGIC 0x35315243u
1500 #define OR_CIRCUIT_MAGIC 0x98ABC04Fu
1502 typedef uint16_t circid_t;
1505 * A circuit is a path over the onion routing
1506 * network. Applications can connect to one end of the circuit, and can
1507 * create exit connections at the other end of the circuit. AP and exit
1508 * connections have only one circuit associated with them (and thus these
1509 * connection types are closed when the circuit is closed), whereas
1510 * OR connections multiplex many circuits at once, and stay standing even
1511 * when there are no circuits running over them.
1513 * A circuit_t structure can fill one of two roles. First, a or_circuit_t
1514 * links two connections together: either an edge connection and an OR
1515 * connection, or two OR connections. (When joined to an OR connection, a
1516 * circuit_t affects only cells sent to a particular circID on that
1517 * connection. When joined to an edge connection, a circuit_t affects all
1518 * data.)
1520 * Second, an origin_circuit_t holds the cipher keys and state for sending data
1521 * along a given circuit. At the OP, it has a sequence of ciphers, each
1522 * of which is shared with a single OR along the circuit. Separate
1523 * ciphers are used for data going "forward" (away from the OP) and
1524 * "backward" (towards the OP). At the OR, a circuit has only two stream
1525 * ciphers: one for data going forward, and one for data going backward.
1527 typedef struct circuit_t {
1528 uint32_t magic; /**< For memory and type debugging: must equal
1529 * ORIGIN_CIRCUIT_MAGIC or OR_CIRCUIT_MAGIC. */
1531 /** Queue of cells waiting to be transmitted on n_conn. */
1532 cell_queue_t n_conn_cells;
1533 /** The OR connection that is next in this circuit. */
1534 or_connection_t *n_conn;
1535 /** The identity hash of n_conn. */
1536 char n_conn_id_digest[DIGEST_LEN];
1537 /** The circuit_id used in the next (forward) hop of this circuit. */
1538 uint16_t n_circ_id;
1539 /** The port for the OR that is next in this circuit. */
1540 uint16_t n_port;
1541 /** The IPv4 address of the OR that is next in this circuit. */
1542 uint32_t n_addr;
1544 /** True iff we are waiting for n_conn_cells to become less full before
1545 * allowing p_streams to add any more cells. (Origin circuit only.) */
1546 unsigned int streams_blocked_on_n_conn : 1;
1547 /** True iff we are waiting for p_conn_cells to become less full before
1548 * allowing n_streams to add any more cells. (OR circuit only.) */
1549 unsigned int streams_blocked_on_p_conn : 1;
1551 uint8_t state; /**< Current status of this circuit. */
1552 uint8_t purpose; /**< Why are we creating this circuit? */
1554 /** How many relay data cells can we package (read from edge streams)
1555 * on this circuit before we receive a circuit-level sendme cell asking
1556 * for more? */
1557 int package_window;
1558 /** How many relay data cells will we deliver (write to edge streams)
1559 * on this circuit? When deliver_window gets low, we send some
1560 * circuit-level sendme cells to indicate that we're willing to accept
1561 * more. */
1562 int deliver_window;
1564 /** For storage while passing to cpuworker (state
1565 * CIRCUIT_STATE_ONIONSKIN_PENDING), or while n_conn is pending
1566 * (state CIRCUIT_STATE_OR_WAIT). When defined, it is always
1567 * length ONIONSKIN_CHALLENGE_LEN. */
1568 char *onionskin;
1570 time_t timestamp_created; /**< When was this circuit created? */
1571 time_t timestamp_dirty; /**< When the circuit was first used, or 0 if the
1572 * circuit is clean. */
1574 uint16_t marked_for_close; /**< Should we close this circuit at the end of
1575 * the main loop? (If true, holds the line number
1576 * where this circuit was marked.) */
1577 const char *marked_for_close_file; /**< For debugging: in which file was this
1578 * circuit marked for close? */
1580 /** Next circuit in the doubly-linked ring of circuits waiting to add
1581 * cells to n_conn. NULL if we have no cells pending, or if we're not
1582 * linked to an OR connection. */
1583 struct circuit_t *next_active_on_n_conn;
1584 /** Previous circuit in the doubly-linked ring of circuits waiting to add
1585 * cells to n_conn. NULL if we have no cells pending, or if we're not
1586 * linked to an OR connection. */
1587 struct circuit_t *prev_active_on_n_conn;
1588 struct circuit_t *next; /**< Next circuit in linked list of all circuits. */
1589 } circuit_t;
1591 /** An origin_circuit_t holds data necessary to build and use a circuit.
1593 typedef struct origin_circuit_t {
1594 circuit_t _base;
1596 /** Linked list of AP streams (or EXIT streams if hidden service)
1597 * associated with this circuit. */
1598 edge_connection_t *p_streams;
1599 /** Build state for this circuit. It includes the intended path
1600 * length, the chosen exit router, rendezvous information, etc.
1602 cpath_build_state_t *build_state;
1603 /** The doubly-linked list of crypt_path_t entries, one per hop,
1604 * for this circuit. This includes ciphers for each hop,
1605 * integrity-checking digests for each hop, and package/delivery
1606 * windows for each hop.
1608 crypt_path_t *cpath;
1610 /** The rend_pk_digest field holds a hash of location-hidden service's
1611 * PK if purpose is S_ESTABLISH_INTRO or S_RENDEZVOUSING.
1613 char rend_pk_digest[DIGEST_LEN];
1615 /** Holds rendezvous cookie if purpose is C_ESTABLISH_REND. Filled with
1616 * zeroes otherwise.
1618 char rend_cookie[REND_COOKIE_LEN];
1621 * The rend_query field holds the y portion of y.onion (nul-terminated)
1622 * if purpose is C_INTRODUCING or C_ESTABLISH_REND, or is a C_GENERAL
1623 * for a hidden service, or is S_*.
1625 char rend_query[REND_SERVICE_ID_LEN+1];
1627 /** The next stream_id that will be tried when we're attempting to
1628 * construct a new AP stream originating at this circuit. */
1629 uint16_t next_stream_id;
1631 /** Quasi-global identifier for this circuit; used for control.c */
1632 /* XXXX NM This can get re-used after 2**32 circuits. */
1633 uint32_t global_identifier;
1635 } origin_circuit_t;
1637 /** An or_circuit_t holds information needed to implement a circuit at an
1638 * OR. */
1639 typedef struct or_circuit_t {
1640 circuit_t _base;
1642 /** Next circuit in the doubly-linked ring of circuits waiting to add
1643 * cells to p_conn. NULL if we have no cells pending, or if we're not
1644 * linked to an OR connection. */
1645 struct circuit_t *next_active_on_p_conn;
1646 /** Previous circuit in the doubly-linked ring of circuits waiting to add
1647 * cells to p_conn. NULL if we have no cells pending, or if we're not
1648 * linked to an OR connection. */
1649 struct circuit_t *prev_active_on_p_conn;
1651 /** The circuit_id used in the previous (backward) hop of this circuit. */
1652 circid_t p_circ_id;
1653 /** Queue of cells waiting to be transmitted on p_conn. */
1654 cell_queue_t p_conn_cells;
1655 /** The OR connection that is previous in this circuit. */
1656 or_connection_t *p_conn;
1657 /** Linked list of Exit streams associated with this circuit. */
1658 edge_connection_t *n_streams;
1659 /** Linked list of Exit streams associated with this circuit that are
1660 * still being resolved. */
1661 edge_connection_t *resolving_streams;
1662 /** The cipher used by intermediate hops for cells heading toward the
1663 * OP. */
1664 crypto_cipher_env_t *p_crypto;
1665 /** The cipher used by intermediate hops for cells heading away from
1666 * the OP. */
1667 crypto_cipher_env_t *n_crypto;
1669 /** The integrity-checking digest used by intermediate hops, for
1670 * cells packaged here and heading towards the OP.
1672 crypto_digest_env_t *p_digest;
1673 /** The integrity-checking digest used by intermediate hops, for
1674 * cells packaged at the OP and arriving here.
1676 crypto_digest_env_t *n_digest;
1678 /** Points to spliced circuit if purpose is REND_ESTABLISHED, and circuit
1679 * is not marked for close. */
1680 struct or_circuit_t *rend_splice;
1682 #if REND_COOKIE_LEN >= DIGEST_LEN
1683 #define REND_TOKEN_LEN REND_COOKIE_LEN
1684 #else
1685 #define REND_TOKEN_LEN DIGEST_LEN
1686 #endif
1688 /** A hash of location-hidden service's PK if purpose is INTRO_POINT, or a
1689 * rendezvous cookie if purpose is REND_POINT_WAITING. Filled with zeroes
1690 * otherwise.
1691 * ???? move to a subtype or adjunct structure? Wastes 20 bytes. -NM
1693 char rend_token[REND_TOKEN_LEN];
1695 /* ???? move to a subtype or adjunct structure? Wastes 20 bytes -NM */
1696 char handshake_digest[DIGEST_LEN]; /**< Stores KH for the handshake. */
1698 /** True iff this circuit was made with a CREATE_FAST cell. */
1699 unsigned int is_first_hop : 1;
1700 } or_circuit_t;
1702 /** Convert a circuit subtype to a circuit_t.*/
1703 #define TO_CIRCUIT(x) (&((x)->_base))
1705 /** Convert a circuit_t* to a pointer to the enclosing or_circuit_t. Asserts
1706 * if the cast is impossible. */
1707 static or_circuit_t *TO_OR_CIRCUIT(circuit_t *);
1708 /** Convert a circuit_t* to a pointer to the enclosing origin_circuit_t.
1709 * Asserts if the cast is impossible. */
1710 static origin_circuit_t *TO_ORIGIN_CIRCUIT(circuit_t *);
1712 static INLINE or_circuit_t *TO_OR_CIRCUIT(circuit_t *x)
1714 tor_assert(x->magic == OR_CIRCUIT_MAGIC);
1715 return DOWNCAST(or_circuit_t, x);
1717 static INLINE origin_circuit_t *TO_ORIGIN_CIRCUIT(circuit_t *x)
1719 tor_assert(x->magic == ORIGIN_CIRCUIT_MAGIC);
1720 return DOWNCAST(origin_circuit_t, x);
1723 #define ALLOW_INVALID_ENTRY 1
1724 #define ALLOW_INVALID_EXIT 2
1725 #define ALLOW_INVALID_MIDDLE 4
1726 #define ALLOW_INVALID_RENDEZVOUS 8
1727 #define ALLOW_INVALID_INTRODUCTION 16
1729 /** An entry specifying a set of addresses and ports that should be remapped
1730 * to another address and port before exiting this exit node. */
1731 typedef struct exit_redirect_t {
1732 /* XXXX020 make this whole mess ipv6-capable. (Does anybody use it? */
1734 uint32_t addr;
1735 uint32_t mask;
1736 uint16_t port_min;
1737 uint16_t port_max;
1739 uint32_t addr_dest;
1740 uint16_t port_dest;
1741 unsigned is_redirect:1;
1742 } exit_redirect_t;
1744 /** A linked list of lines in a config file. */
1745 typedef struct config_line_t {
1746 char *key;
1747 char *value;
1748 struct config_line_t *next;
1749 } config_line_t;
1751 /** Configuration options for a Tor process. */
1752 typedef struct {
1753 uint32_t _magic;
1755 /** What should the tor process actually do? */
1756 enum {
1757 CMD_RUN_TOR=0, CMD_LIST_FINGERPRINT, CMD_HASH_PASSWORD,
1758 CMD_VERIFY_CONFIG, CMD_RUN_UNITTESTS
1759 } command;
1760 const char *command_arg; /**< Argument for command-line option. */
1762 config_line_t *Logs; /**< New-style list of configuration lines
1763 * for logs */
1765 char *DebugLogFile; /**< Where to send verbose log messages. */
1766 char *DataDirectory; /**< OR only: where to store long-term data. */
1767 char *Nickname; /**< OR only: nickname of this onion router. */
1768 char *Address; /**< OR only: configured address for this onion router. */
1769 char *PidFile; /**< Where to store PID of Tor process. */
1771 char *ExitNodes; /**< Comma-separated list of nicknames of ORs to consider
1772 * as exits. */
1773 char *EntryNodes; /**< Comma-separated list of nicknames of ORs to consider
1774 * as entry points. */
1775 int StrictExitNodes; /**< Boolean: When none of our ExitNodes are up, do we
1776 * stop building circuits? */
1777 int StrictEntryNodes; /**< Boolean: When none of our EntryNodes are up, do we
1778 * stop building circuits? */
1779 char *ExcludeNodes; /**< Comma-separated list of nicknames of ORs not to
1780 * use in circuits. */
1782 char *RendNodes; /**< Comma-separated list of nicknames used as introduction
1783 * points. */
1784 char *RendExcludeNodes; /**< Comma-separated list of nicknames not to use
1785 * as introduction points. */
1787 /** List of "entry", "middle", "exit", "introduction", "rendezvous". */
1788 smartlist_t *AllowInvalidNodes;
1789 int _AllowInvalid; /**< Bitmask; derived from AllowInvalidNodes. */
1790 config_line_t *ExitPolicy; /**< Lists of exit policy components. */
1791 int ExitPolicyRejectPrivate; /**< Should we not exit to local addresses? */
1792 config_line_t *SocksPolicy; /**< Lists of socks policy components */
1793 config_line_t *DirPolicy; /**< Lists of dir policy components */
1794 /** Addresses to bind for listening for SOCKS connections. */
1795 config_line_t *SocksListenAddress;
1796 /** Addresses to bind for listening for transparent pf/nefilter
1797 * connections. */
1798 config_line_t *TransListenAddress;
1799 /** Addresses to bind for listening for transparent natd connections */
1800 config_line_t *NatdListenAddress;
1801 /** Addresses to bind for listening for SOCKS connections. */
1802 config_line_t *DNSListenAddress;
1803 /** Addresses to bind for listening for OR connections. */
1804 config_line_t *ORListenAddress;
1805 /** Addresses to bind for listening for directory connections. */
1806 config_line_t *DirListenAddress;
1807 /** Addresses to bind for listening for control connections. */
1808 config_line_t *ControlListenAddress;
1809 /** Local address to bind outbound sockets */
1810 char *OutboundBindAddress;
1811 /** Directory server only: which versions of
1812 * Tor should we tell users to run? */
1813 config_line_t *RecommendedVersions;
1814 config_line_t *RecommendedClientVersions;
1815 config_line_t *RecommendedServerVersions;
1816 /** Whether dirservers refuse router descriptors with private IPs. */
1817 int DirAllowPrivateAddresses;
1818 char *User; /**< Name of user to run Tor as. */
1819 char *Group; /**< Name of group to run Tor as. */
1820 int ORPort; /**< Port to listen on for OR connections. */
1821 int SocksPort; /**< Port to listen on for SOCKS connections. */
1822 /** Port to listen on for transparent pf/netfilter connections. */
1823 int TransPort;
1824 int NatdPort; /**< Port to listen on for transparent natd connections. */
1825 int ControlPort; /**< Port to listen on for control connections. */
1826 config_line_t *ControlSocket; /**< List of Unix Domain Sockets to listen on
1827 * for control connections. */
1828 int DirPort; /**< Port to listen on for directory connections. */
1829 int DNSPort; /**< Port to listen on for DNS requests. */
1830 int AssumeReachable; /**< Whether to publish our descriptor regardless. */
1831 int AuthoritativeDir; /**< Boolean: is this an authoritative directory? */
1832 int V1AuthoritativeDir; /**< Boolean: is this an authoritative directory
1833 * for version 1 directories? */
1834 int V2AuthoritativeDir; /**< Boolean: is this an authoritative directory
1835 * for version 2 directories? */
1836 int V3AuthoritativeDir; /**< Boolean: is this an authoritative directory
1837 * for version 3 directories? */
1838 int HSAuthoritativeDir; /**< Boolean: does this an authoritative directory
1839 * handle hidden service requests? */
1840 int HSAuthorityRecordStats; /**< Boolean: does this HS authoritative
1841 * directory record statistics? */
1842 int NamingAuthoritativeDir; /**< Boolean: is this an authoritative directory
1843 * that's willing to bind names? */
1844 int VersioningAuthoritativeDir; /**< Boolean: is this an authoritative
1845 * directory that's willing to recommend
1846 * versions? */
1847 int BridgeAuthoritativeDir; /**< Boolean: is this an authoritative directory
1848 * that aggregates bridge descriptors? */
1850 int UseBridges; /**< Boolean: should we start all circuits with a bridge? */
1851 config_line_t *Bridges; /**< List of bootstrap bridge addresses. */
1853 int AvoidDiskWrites; /**< Boolean: should we never cache things to disk?
1854 * Not used yet. */
1855 int ClientOnly; /**< Boolean: should we never evolve into a server role? */
1856 /** Boolean: should we never publish a descriptor? Deprecated. */
1857 int NoPublish;
1858 /** To what authority types do we publish our descriptor? Choices are
1859 * "v1", "v2", "bridge", or "". */
1860 smartlist_t *PublishServerDescriptor;
1861 /** An authority type, derived from PublishServerDescriptor. */
1862 authority_type_t _PublishServerDescriptor;
1863 /** Boolean: do we publish hidden service descriptors to the HS auths? */
1864 int PublishHidServDescriptors;
1865 int FetchServerDescriptors; /**< Do we fetch server descriptors as normal? */
1866 int FetchHidServDescriptors; /** and hidden service descriptors? */
1867 int FetchUselessDescriptors; /**< Do we fetch non-running descriptors too? */
1868 int AllDirActionsPrivate; /**< Should every directory action be sent
1869 * through a Tor circuit? */
1871 int ConnLimit; /**< Demanded minimum number of simultaneous connections. */
1872 int _ConnLimit; /**< Maximum allowed number of simultaneous connections. */
1873 int RunAsDaemon; /**< If true, run in the background. (Unix only) */
1874 int FascistFirewall; /**< Whether to prefer ORs reachable on open ports. */
1875 smartlist_t *FirewallPorts; /**< Which ports our firewall allows
1876 * (strings). */
1877 config_line_t *ReachableAddresses; /**< IP:ports our firewall allows. */
1878 config_line_t *ReachableORAddresses; /**< IP:ports for OR conns. */
1879 config_line_t *ReachableDirAddresses; /**< IP:ports for Dir conns. */
1881 /** Application ports that require all nodes in circ to have sufficient
1882 * uptime. */
1883 smartlist_t *LongLivedPorts;
1884 /** Should we try to reuse the same exit node for a given host */
1885 smartlist_t *TrackHostExits;
1886 int TrackHostExitsExpire; /**< Number of seconds until we expire an
1887 * addressmap */
1888 config_line_t *AddressMap; /**< List of address map directives. */
1889 int AutomapHostsOnResolve; /**< If true, when we get a resolve request for a
1890 * hostname ending with one of the suffixes in
1891 * <b>AutomapHostsSuffixes</b>, map it to a
1892 * virtual address. */
1893 smartlist_t *AutomapHostsSuffixes; /**< List of suffixes for
1894 * <b>AutomapHostsOnResolve</b>. */
1895 int RendPostPeriod; /**< How often do we post each rendezvous service
1896 * descriptor? Remember to publish them independently. */
1897 int KeepalivePeriod; /**< How often do we send padding cells to keep
1898 * connections alive? */
1899 int SocksTimeout; /**< How long do we let a socks connection wait
1900 * unattached before we fail it? */
1901 int CircuitBuildTimeout; /**< Cull non-open circuits that were born
1902 * at least this many seconds ago. */
1903 int CircuitIdleTimeout; /**< Cull open clean circuits that were born
1904 * at least this many seconds ago. */
1905 int MaxOnionsPending; /**< How many circuit CREATE requests do we allow
1906 * to wait simultaneously before we start dropping
1907 * them? */
1908 int NewCircuitPeriod; /**< How long do we use a circuit before building
1909 * a new one? */
1910 int MaxCircuitDirtiness; /**< Never use circs that were first used more than
1911 this interval ago. */
1912 uint64_t BandwidthRate; /**< How much bandwidth, on average, are we willing
1913 * to use in a second? */
1914 uint64_t BandwidthBurst; /**< How much bandwidth, at maximum, are we willing
1915 * to use in a second? */
1916 uint64_t MaxAdvertisedBandwidth; /**< How much bandwidth are we willing to
1917 * tell people we have? */
1918 uint64_t RelayBandwidthRate; /**< How much bandwidth, on average, are we
1919 * willing to use for all relayed conns? */
1920 uint64_t RelayBandwidthBurst; /**< How much bandwidth, at maximum, will we
1921 * use in a second for all relayed conns? */
1922 int NumCpus; /**< How many CPUs should we try to use? */
1923 int RunTesting; /**< If true, create testing circuits to measure how well the
1924 * other ORs are running. */
1925 char *TestVia; /**< When reachability testing, use these as middle hop. */
1926 config_line_t *RendConfigLines; /**< List of configuration lines
1927 * for rendezvous services. */
1928 char *ContactInfo; /**< Contact info to be published in the directory */
1930 char *HttpProxy; /**< hostname[:port] to use as http proxy, if any */
1931 uint32_t HttpProxyAddr; /**< Parsed IPv4 addr for http proxy, if any */
1932 uint16_t HttpProxyPort; /**< Parsed port for http proxy, if any */
1933 char *HttpProxyAuthenticator; /**< username:password string, if any */
1935 char *HttpsProxy; /**< hostname[:port] to use as https proxy, if any */
1936 uint32_t HttpsProxyAddr; /**< Parsed IPv4 addr for https proxy, if any */
1937 uint16_t HttpsProxyPort; /**< Parsed port for https proxy, if any */
1938 char *HttpsProxyAuthenticator; /**< username:password string, if any */
1940 config_line_t *DirServers; /**< List of configuration lines
1941 * for directory servers. */
1942 char *MyFamily; /**< Declared family for this OR. */
1943 config_line_t *NodeFamilies; /**< List of config lines for
1944 * node families */
1945 config_line_t *RedirectExit; /**< List of config lines for simple
1946 * addr/port redirection */
1947 smartlist_t *RedirectExitList; /**< List of exit_redirect_t */
1948 config_line_t *AuthDirBadExit; /**< Address policy for descriptors to
1949 * mark as bad exits. */
1950 config_line_t *AuthDirReject; /**< Address policy for descriptors to
1951 * reject. */
1952 config_line_t *AuthDirInvalid; /**< Address policy for descriptors to
1953 * never mark as valid. */
1954 int AuthDirListBadExits; /**< True iff we should list bad exits,
1955 * and vote for all other exits as good. */
1956 int AuthDirRejectUnlisted; /**< Boolean: do we reject all routers that
1957 * aren't named in our fingerprint file? */
1958 char *AccountingStart; /**< How long is the accounting interval, and when
1959 * does it start? */
1960 uint64_t AccountingMax; /**< How many bytes do we allow per accounting
1961 * interval before hibernation? 0 for "never
1962 * hibernate." */
1964 char *HashedControlPassword; /**< Base64-encoded hash of a password for
1965 * the control system. */
1966 int CookieAuthentication; /**< Boolean: do we enable cookie-based auth for
1967 * the control system? */
1968 int LeaveStreamsUnattached; /**< Boolean: Does Tor attach new streams to
1969 * circuits itself (0), or does it expect a controller
1970 * to cope? (1) */
1971 int DisablePredictedCircuits; /**< Boolean: does Tor preemptively
1972 * make circuits in the background (0),
1973 * or not (1)? */
1974 int ShutdownWaitLength; /**< When we get a SIGINT and we're a server, how
1975 * long do we wait before exiting? */
1976 int SafeLogging; /**< Boolean: are we allowed to log sensitive strings
1977 * such as addresses (0), or do we scrub them first (1)? */
1978 int SafeSocks; /**< Boolean: should we outright refuse application
1979 * connections that use socks4 or socks5-with-local-dns? */
1980 #define LOG_PROTOCOL_WARN (get_options()->ProtocolWarnings ? \
1981 LOG_WARN : LOG_INFO)
1982 int ProtocolWarnings; /**< Boolean: when other parties screw up the Tor
1983 * protocol, is it a warn or an info in our logs? */
1984 int TestSocks; /**< Boolean: when we get a socks connection, do we loudly
1985 * log whether it was DNS-leaking or not? */
1986 int HardwareAccel; /**< Boolean: Should we enable OpenSSL hardware
1987 * acceleration where available? */
1988 int UseEntryGuards; /**< Boolean: Do we try to enter from a smallish number
1989 * of fixed nodes? */
1990 int NumEntryGuards; /**< How many entry guards do we try to establish? */
1991 int RephistTrackTime; /**< How many seconds do we keep rephist info? */
1992 int FastFirstHopPK; /**< If Tor believes it is safe, should we save a third
1993 * of our PK time by sending CREATE_FAST cells? */
1995 addr_policy_t *reachable_addr_policy; /**< Parsed from ReachableAddresses */
1997 char *VirtualAddrNetwork; /**< Address and mask to hand out for virtual
1998 * MAPADDRESS requests. */
1999 int ServerDNSSearchDomains; /**< Boolean: If set, we don't force exit
2000 * addresses to be FQDNs, but rather search for them in
2001 * the local domains. */
2002 int ServerDNSDetectHijacking; /**< Boolean: If true, check for DNS failure
2003 * hijacking. */
2004 char *ServerDNSResolvConfFile; /**< If provided, we configure our internal
2005 * resolver from the file here rather than from
2006 * /etc/resolv.conf (Unix) or the registry (Windows). */
2007 smartlist_t *ServerDNSTestAddresses; /**< A list of addresses that definitely
2008 * should be resolveable. Used for
2009 * testing our DNS server. */
2010 int EnforceDistinctSubnets; /**< If true, don't allow multiple routers in the
2011 * same network zone in the same circuit. */
2012 int TunnelDirConns; /**< If true, use BEGIN_DIR rather than BEGIN when
2013 * possible. */
2014 int PreferTunneledDirConns; /**< If true, avoid dirservers that don't
2015 * support BEGIN_DIR, when possible. */
2016 int AllowNonRFC953Hostnames; /**< If true, we allow connections to hostnames
2017 * with weird characters. */
2018 /** If true, we try resolving hostnames with weird characters. */
2019 int ServerDNSAllowNonRFC953Hostnames;
2021 /** If true, we try to download extra-info documents (and we serve them,
2022 * if we are a cache). For authorities, this is always true. */
2023 int DownloadExtraInfo;
2025 } or_options_t;
2027 /** Persistent state for an onion router, as saved to disk. */
2028 typedef struct {
2029 uint32_t _magic;
2030 /** The time at which we next plan to write the state to the disk. Equal to
2031 * TIME_MAX if there are no saveable changes, 0 if there are changes that
2032 * should be saved right away. */
2033 time_t next_write;
2035 /** When was the state last written to disk? */
2036 time_t LastWritten;
2038 /** Fields for accounting bandwidth use. */
2039 time_t AccountingIntervalStart;
2040 uint64_t AccountingBytesReadInInterval;
2041 uint64_t AccountingBytesWrittenInInterval;
2042 int AccountingSecondsActive;
2043 uint64_t AccountingExpectedUsage;
2045 /** A list of Entry Guard-related configuration lines. */
2046 config_line_t *EntryGuards;
2048 /** These fields hold information on the history of bandwidth usage for
2049 * servers. The "Ends" fields hold the time when we last updated the
2050 * bandwidth usage. The "Interval" fields hold the granularity, in seconds,
2051 * of the entries of Values. The "Values" lists hold decimal string
2052 * representations of the number of bytes read or written in each
2053 * interval. */
2054 time_t BWHistoryReadEnds;
2055 int BWHistoryReadInterval;
2056 smartlist_t *BWHistoryReadValues;
2057 time_t BWHistoryWriteEnds;
2058 int BWHistoryWriteInterval;
2059 smartlist_t *BWHistoryWriteValues;
2061 /** What version of Tor wrote this state file? */
2062 char *TorVersion;
2064 /** Holds any unrecognized values we found in the state file, in the order
2065 * in which we found them. */
2066 config_line_t *ExtraLines;
2068 /** When did we last rotate our onion key? "0" for 'no idea'. */
2069 time_t LastRotatedOnionKey;
2070 } or_state_t;
2072 /** Change the next_write time of <b>state</b> to <b>when</b>, unless the
2073 * state is already scheduled to be written to disk earlier than <b>when</b>.
2075 static INLINE void or_state_mark_dirty(or_state_t *state, time_t when)
2077 if (state->next_write > when)
2078 state->next_write = when;
2081 #define MAX_SOCKS_REPLY_LEN 1024
2082 #define MAX_SOCKS_ADDR_LEN 256
2084 /** Please open a TCP connection to this addr:port. */
2085 #define SOCKS_COMMAND_CONNECT 0x01
2086 /** Please turn this FQDN into an IP address, privately. */
2087 #define SOCKS_COMMAND_RESOLVE 0xF0
2088 /** Please turn this IP address into an FQDN, privately. */
2089 #define SOCKS_COMMAND_RESOLVE_PTR 0xF1
2090 /** Please open an encrypted direct TCP connection to the directory port
2091 * of the Tor server specified by address:port. (In this case address:port
2092 * specifies the ORPort of the server.) */
2093 #define SOCKS_COMMAND_CONNECT_DIR 0xF2
2095 #define SOCKS_COMMAND_IS_CONNECT(c) ((c)==SOCKS_COMMAND_CONNECT || \
2096 (c)==SOCKS_COMMAND_CONNECT_DIR)
2097 #define SOCKS_COMMAND_IS_RESOLVE(c) ((c)==SOCKS_COMMAND_RESOLVE || \
2098 (c)==SOCKS_COMMAND_RESOLVE_PTR)
2100 /** State of a SOCKS request from a user to an OP. Also used to encode other
2101 * information for non-socks user request (such as those on TransPort and
2102 * DNSPort) */
2103 struct socks_request_t {
2104 /** Which version of SOCKS did the client use? One of "0, 4, 5" -- where
2105 * 0 means that no socks handshake ever took place, and this is just a
2106 * stub connection (e.g. see connection_ap_make_link()). */
2107 char socks_version;
2108 int command; /**< What is this stream's goal? One from the above list. */
2109 size_t replylen; /**< Length of <b>reply</b>. */
2110 char reply[MAX_SOCKS_REPLY_LEN]; /**< Write an entry into this string if
2111 * we want to specify our own socks reply,
2112 * rather than using the default socks4 or
2113 * socks5 socks reply. We use this for the
2114 * two-stage socks5 handshake.
2116 char address[MAX_SOCKS_ADDR_LEN]; /**< What address did the client ask to
2117 connect to/resolve? */
2118 uint16_t port; /**< What port did the client ask to connect to? */
2119 unsigned has_finished : 1; /**< Has the SOCKS handshake finished? Used to
2120 * make sure we send back a socks reply for
2121 * every connection. */
2124 /* all the function prototypes go here */
2126 /********************************* buffers.c ***************************/
2128 buf_t *buf_new(void);
2129 buf_t *buf_new_with_capacity(size_t size);
2130 void buf_free(buf_t *buf);
2131 void buf_clear(buf_t *buf);
2132 void buf_shrink(buf_t *buf);
2133 void buf_shrink_freelists(void);
2135 size_t buf_datalen(const buf_t *buf);
2136 size_t buf_capacity(const buf_t *buf);
2137 const char *_buf_peek_raw_buffer(const buf_t *buf);
2139 int read_to_buf(int s, size_t at_most, buf_t *buf, int *reached_eof);
2140 int read_to_buf_tls(tor_tls_t *tls, size_t at_most, buf_t *buf);
2142 int flush_buf(int s, buf_t *buf, size_t sz, size_t *buf_flushlen);
2143 int flush_buf_tls(tor_tls_t *tls, buf_t *buf, size_t sz, size_t *buf_flushlen);
2145 int write_to_buf(const char *string, size_t string_len, buf_t *buf);
2146 int write_to_buf_zlib(buf_t *buf, tor_zlib_state_t *state,
2147 const char *data, size_t data_len, int done);
2148 int move_buf_to_buf(buf_t *buf_out, buf_t *buf_in, size_t *buf_flushlen);
2149 int fetch_from_buf(char *string, size_t string_len, buf_t *buf);
2150 int fetch_from_buf_http(buf_t *buf,
2151 char **headers_out, size_t max_headerlen,
2152 char **body_out, size_t *body_used, size_t max_bodylen,
2153 int force_complete);
2154 int fetch_from_buf_socks(buf_t *buf, socks_request_t *req,
2155 int log_sockstype, int safe_socks);
2156 int fetch_from_buf_line(buf_t *buf, char *data_out, size_t *data_len);
2157 int fetch_from_buf_line_lf(buf_t *buf, char *data_out, size_t *data_len);
2159 int peek_buf_has_control0_command(buf_t *buf);
2161 void assert_buf_ok(buf_t *buf);
2163 /********************************* circuitbuild.c **********************/
2165 char *circuit_list_path(origin_circuit_t *circ, int verbose);
2166 char *circuit_list_path_for_controller(origin_circuit_t *circ);
2167 void circuit_log_path(int severity, unsigned int domain,
2168 origin_circuit_t *circ);
2169 void circuit_rep_hist_note_result(origin_circuit_t *circ);
2170 origin_circuit_t *origin_circuit_init(uint8_t purpose, int onehop_tunnel,
2171 int need_uptime,
2172 int need_capacity, int internal);
2173 origin_circuit_t *circuit_establish_circuit(uint8_t purpose,
2174 int onehop_tunnel, extend_info_t *exit,
2175 int need_uptime, int need_capacity,
2176 int internal);
2177 int circuit_handle_first_hop(origin_circuit_t *circ);
2178 void circuit_n_conn_done(or_connection_t *or_conn, int status);
2179 int inform_testing_reachability(void);
2180 int circuit_send_next_onion_skin(origin_circuit_t *circ);
2181 void circuit_note_clock_jumped(int seconds_elapsed);
2182 int circuit_extend(cell_t *cell, circuit_t *circ);
2183 int circuit_init_cpath_crypto(crypt_path_t *cpath, const char *key_data,
2184 int reverse);
2185 int circuit_finish_handshake(origin_circuit_t *circ, uint8_t cell_type,
2186 const char *reply);
2187 int circuit_truncated(origin_circuit_t *circ, crypt_path_t *layer);
2188 int onionskin_answer(or_circuit_t *circ, uint8_t cell_type,
2189 const char *payload, const char *keys);
2190 int circuit_all_predicted_ports_handled(time_t now, int *need_uptime,
2191 int *need_capacity);
2193 int circuit_append_new_exit(origin_circuit_t *circ, extend_info_t *info);
2194 int circuit_extend_to_new_exit(origin_circuit_t *circ, extend_info_t *info);
2195 void onion_append_to_cpath(crypt_path_t **head_ptr, crypt_path_t *new_hop);
2196 extend_info_t *extend_info_from_router(routerinfo_t *r);
2197 extend_info_t *extend_info_from_routerstatus(routerstatus_t *s);
2198 extend_info_t *extend_info_dup(extend_info_t *info);
2199 void extend_info_free(extend_info_t *info);
2200 routerinfo_t *build_state_get_exit_router(cpath_build_state_t *state);
2201 const char *build_state_get_exit_nickname(cpath_build_state_t *state);
2203 void entry_guards_compute_status(void);
2204 int entry_guard_register_connect_status(const char *digest, int succeeded,
2205 time_t now);
2206 void entry_nodes_should_be_added(void);
2207 void entry_guards_update_state(or_state_t *state);
2208 int entry_guards_parse_state(or_state_t *state, int set, char **msg);
2209 int getinfo_helper_entry_guards(control_connection_t *conn,
2210 const char *question, char **answer);
2211 void entry_guards_free_all(void);
2213 /********************************* circuitlist.c ***********************/
2215 circuit_t * _circuit_get_global_list(void);
2216 const char *circuit_state_to_string(int state);
2217 void circuit_dump_by_conn(connection_t *conn, int severity);
2218 void circuit_set_p_circid_orconn(or_circuit_t *circ, uint16_t id,
2219 or_connection_t *conn);
2220 void circuit_set_n_circid_orconn(circuit_t *circ, uint16_t id,
2221 or_connection_t *conn);
2222 void circuit_set_state(circuit_t *circ, int state);
2223 void circuit_close_all_marked(void);
2224 origin_circuit_t *origin_circuit_new(void);
2225 or_circuit_t *or_circuit_new(uint16_t p_circ_id, or_connection_t *p_conn);
2226 circuit_t *circuit_get_by_circid_orconn(uint16_t circ_id,
2227 or_connection_t *conn);
2228 circuit_t *circuit_get_by_edge_conn(edge_connection_t *conn);
2229 void circuit_unlink_all_from_or_conn(or_connection_t *conn, int reason);
2230 origin_circuit_t *circuit_get_by_global_id(uint32_t id);
2231 origin_circuit_t *circuit_get_by_rend_query_and_purpose(const char *rend_query,
2232 uint8_t purpose);
2233 origin_circuit_t *circuit_get_next_by_pk_and_purpose(origin_circuit_t *start,
2234 const char *digest, uint8_t purpose);
2235 or_circuit_t *circuit_get_rendezvous(const char *cookie);
2236 or_circuit_t *circuit_get_intro_point(const char *digest);
2237 origin_circuit_t *circuit_find_to_cannibalize(uint8_t purpose,
2238 extend_info_t *info,
2239 int need_uptime,
2240 int need_capacity, int internal);
2241 void circuit_mark_all_unused_circs(void);
2242 void circuit_expire_all_dirty_circs(void);
2243 void _circuit_mark_for_close(circuit_t *circ, int reason,
2244 int line, const char *file);
2245 int circuit_get_cpath_len(origin_circuit_t *circ);
2246 crypt_path_t *circuit_get_cpath_hop(origin_circuit_t *circ, int hopnum);
2247 void circuit_get_all_pending_on_or_conn(smartlist_t *out,
2248 or_connection_t *or_conn);
2249 int circuit_count_pending_on_or_conn(or_connection_t *or_conn);
2251 #define circuit_mark_for_close(c, reason) \
2252 _circuit_mark_for_close((c), (reason), __LINE__, _SHORT_FILE_)
2254 void assert_cpath_layer_ok(const crypt_path_t *cp);
2255 void assert_circuit_ok(const circuit_t *c);
2256 void circuit_free_all(void);
2258 /********************************* circuituse.c ************************/
2260 void circuit_expire_building(time_t now);
2261 void circuit_remove_handled_ports(smartlist_t *needed_ports);
2262 int circuit_stream_is_being_handled(edge_connection_t *conn, uint16_t port,
2263 int min);
2264 void circuit_build_needed_circs(time_t now);
2265 void circuit_detach_stream(circuit_t *circ, edge_connection_t *conn);
2267 void reset_bandwidth_test(void);
2268 int circuit_enough_testing_circs(void);
2270 void circuit_has_opened(origin_circuit_t *circ);
2271 void circuit_build_failed(origin_circuit_t *circ);
2272 origin_circuit_t *circuit_launch_by_nickname(uint8_t purpose,
2273 int onehop_tunnel,
2274 const char *exit_nickname,
2275 int need_uptime, int need_capacity,
2276 int is_internal);
2277 origin_circuit_t *circuit_launch_by_extend_info(uint8_t purpose,
2278 int onehop_tunnel,
2279 extend_info_t *info,
2280 int need_uptime, int need_capacity,
2281 int is_internal);
2282 origin_circuit_t *circuit_launch_by_router(uint8_t purpose,
2283 int onehop_tunnel,
2284 routerinfo_t *exit,
2285 int need_uptime, int need_capacity,
2286 int is_internal);
2287 void circuit_reset_failure_count(int timeout);
2288 int connection_ap_handshake_attach_chosen_circuit(edge_connection_t *conn,
2289 origin_circuit_t *circ,
2290 crypt_path_t *cpath);
2291 int connection_ap_handshake_attach_circuit(edge_connection_t *conn);
2293 /********************************* command.c ***************************/
2295 void command_process_cell(cell_t *cell, or_connection_t *conn);
2297 extern uint64_t stats_n_padding_cells_processed;
2298 extern uint64_t stats_n_create_cells_processed;
2299 extern uint64_t stats_n_created_cells_processed;
2300 extern uint64_t stats_n_relay_cells_processed;
2301 extern uint64_t stats_n_destroy_cells_processed;
2303 /********************************* config.c ***************************/
2305 or_options_t *get_options(void);
2306 int set_options(or_options_t *new_val, char **msg);
2307 void config_free_all(void);
2308 const char *safe_str(const char *address);
2309 const char *escaped_safe_str(const char *address);
2310 const char *get_version(void);
2312 int config_get_lines(char *string, config_line_t **result);
2313 void config_free_lines(config_line_t *front);
2314 int options_trial_assign(config_line_t *list, int use_defaults,
2315 int clear_first, char **msg);
2316 int resolve_my_address(int warn_severity, or_options_t *options,
2317 uint32_t *addr, char **hostname_out);
2318 int is_local_IP(uint32_t ip) ATTR_PURE;
2319 void options_init(or_options_t *options);
2320 int options_init_from_torrc(int argc, char **argv);
2321 int options_init_logs(or_options_t *options, int validate_only);
2322 int option_is_recognized(const char *key);
2323 const char *option_get_canonical_name(const char *key);
2324 config_line_t *option_get_assignment(or_options_t *options,
2325 const char *key);
2326 char *options_dump(or_options_t *options, int minimal);
2327 int options_save_current(void);
2328 const char *get_torrc_fname(void);
2330 or_state_t *get_or_state(void);
2331 int or_state_load(void);
2332 int or_state_save(time_t now);
2334 int getinfo_helper_config(control_connection_t *conn,
2335 const char *question, char **answer);
2337 #ifdef CONFIG_PRIVATE
2338 /* Used only by config.c and test.c */
2339 or_options_t *options_new(void);
2340 #endif
2342 /********************************* connection.c ***************************/
2344 const char *conn_type_to_string(int type);
2345 const char *conn_state_to_string(int type, int state);
2347 connection_t *connection_new(int type, int socket_family);
2348 void connection_link_connections(connection_t *conn_a, connection_t *conn_b);
2349 void connection_unregister_events(connection_t *conn);
2350 void connection_free(connection_t *conn);
2351 void connection_free_all(void);
2352 void connection_about_to_close_connection(connection_t *conn);
2353 void connection_close_immediate(connection_t *conn);
2354 void _connection_mark_for_close(connection_t *conn,int line, const char *file);
2356 #define connection_mark_for_close(c) \
2357 _connection_mark_for_close((c), __LINE__, _SHORT_FILE_)
2359 void connection_expire_held_open(void);
2361 int connection_connect(connection_t *conn, const char *address, uint32_t addr,
2362 uint16_t port);
2363 int retry_all_listeners(smartlist_t *replaced_conns,
2364 smartlist_t *new_conns);
2366 int connection_bucket_write_limit(connection_t *conn);
2367 int global_write_bucket_low(connection_t *conn, size_t attempt, int priority);
2368 void connection_bucket_init(void);
2369 void connection_bucket_refill(int seconds_elapsed);
2371 int connection_handle_read(connection_t *conn);
2373 int connection_fetch_from_buf(char *string, size_t len, connection_t *conn);
2375 int connection_wants_to_flush(connection_t *conn);
2376 int connection_outbuf_too_full(connection_t *conn);
2377 int connection_handle_write(connection_t *conn, int force);
2378 void _connection_write_to_buf_impl(const char *string, size_t len,
2379 connection_t *conn, int zlib);
2380 static void connection_write_to_buf(const char *string, size_t len,
2381 connection_t *conn);
2382 static void connection_write_to_buf_zlib(const char *string, size_t len,
2383 dir_connection_t *conn, int done);
2384 static INLINE void
2385 connection_write_to_buf(const char *string, size_t len, connection_t *conn)
2387 _connection_write_to_buf_impl(string, len, conn, 0);
2389 static INLINE void
2390 connection_write_to_buf_zlib(const char *string, size_t len,
2391 dir_connection_t *conn, int done)
2393 _connection_write_to_buf_impl(string, len, TO_CONN(conn), done ? -1 : 1);
2396 or_connection_t *connection_or_exact_get_by_addr_port(uint32_t addr,
2397 uint16_t port);
2398 edge_connection_t *connection_get_by_global_id(uint32_t id);
2400 connection_t *connection_get_by_type(int type);
2401 connection_t *connection_get_by_type_purpose(int type, int purpose);
2402 connection_t *connection_get_by_type_addr_port_purpose(int type, uint32_t addr,
2403 uint16_t port, int purpose);
2404 connection_t *connection_get_by_type_state(int type, int state);
2405 connection_t *connection_get_by_type_state_lastwritten(int type, int state);
2406 connection_t *connection_get_by_type_state_rendquery(int type, int state,
2407 const char *rendquery);
2409 #define connection_speaks_cells(conn) ((conn)->type == CONN_TYPE_OR)
2410 int connection_is_listener(connection_t *conn);
2411 int connection_state_is_open(connection_t *conn);
2412 int connection_state_is_connecting(connection_t *conn);
2414 char *alloc_http_authenticator(const char *authenticator);
2416 void assert_connection_ok(connection_t *conn, time_t now);
2417 int connection_or_nonopen_was_started_here(or_connection_t *conn);
2418 void connection_dump_buffer_mem_stats(int severity);
2420 /********************************* connection_edge.c *************************/
2422 #define connection_mark_unattached_ap(conn, endreason) \
2423 _connection_mark_unattached_ap((conn), (endreason), __LINE__, _SHORT_FILE_)
2425 void _connection_mark_unattached_ap(edge_connection_t *conn, int endreason,
2426 int line, const char *file);
2427 int connection_edge_reached_eof(edge_connection_t *conn);
2428 int connection_edge_process_inbuf(edge_connection_t *conn,
2429 int package_partial);
2430 int connection_edge_destroy(uint16_t circ_id, edge_connection_t *conn);
2431 int connection_edge_end(edge_connection_t *conn, char reason);
2432 int connection_edge_end_errno(edge_connection_t *conn);
2433 int connection_edge_finished_flushing(edge_connection_t *conn);
2434 int connection_edge_finished_connecting(edge_connection_t *conn);
2436 int connection_ap_handshake_send_begin(edge_connection_t *ap_conn);
2437 int connection_ap_handshake_send_resolve(edge_connection_t *ap_conn);
2439 edge_connection_t *connection_ap_make_link(char *address, uint16_t port,
2440 const char *digest, int command);
2441 void connection_ap_handshake_socks_reply(edge_connection_t *conn, char *reply,
2442 size_t replylen,
2443 int endreason);
2444 void connection_ap_handshake_socks_resolved(edge_connection_t *conn,
2445 int answer_type,
2446 size_t answer_len,
2447 const char *answer,
2448 int ttl);
2450 int connection_exit_begin_conn(cell_t *cell, circuit_t *circ);
2451 int connection_exit_begin_resolve(cell_t *cell, or_circuit_t *circ);
2452 void connection_exit_connect(edge_connection_t *conn);
2453 int connection_edge_is_rendezvous_stream(edge_connection_t *conn);
2454 int connection_ap_can_use_exit(edge_connection_t *conn, routerinfo_t *exit);
2455 void connection_ap_expire_beginning(void);
2456 void connection_ap_attach_pending(void);
2457 void circuit_discard_optional_exit_enclaves(extend_info_t *info);
2458 int connection_ap_detach_retriable(edge_connection_t *conn,
2459 origin_circuit_t *circ,
2460 int reason);
2461 int connection_ap_process_transparent(edge_connection_t *conn);
2463 int address_is_invalid_destination(const char *address, int client);
2465 void addressmap_init(void);
2466 void addressmap_clean(time_t now);
2467 void addressmap_clear_configured(void);
2468 void addressmap_clear_transient(void);
2469 void addressmap_free_all(void);
2470 int addressmap_rewrite(char *address, size_t maxlen);
2471 int addressmap_have_mapping(const char *address);
2472 void addressmap_register(const char *address, char *new_address,
2473 time_t expires);
2474 int parse_virtual_addr_network(const char *val, int validate_only,
2475 char **msg);
2476 int client_dns_incr_failures(const char *address);
2477 void client_dns_clear_failures(const char *address);
2478 void client_dns_set_addressmap(const char *address, uint32_t val,
2479 const char *exitname, int ttl);
2480 int address_is_in_virtual_range(const char *addr);
2481 const char *addressmap_register_virtual_address(int type, char *new_address);
2482 void addressmap_get_mappings(smartlist_t *sl, time_t min_expires,
2483 time_t max_expires);
2484 int connection_ap_handshake_rewrite_and_attach(edge_connection_t *conn,
2485 origin_circuit_t *circ,
2486 crypt_path_t *cpath);
2487 int hostname_is_noconnect_address(const char *address);
2489 void set_exit_redirects(smartlist_t *lst);
2490 typedef enum hostname_type_t {
2491 NORMAL_HOSTNAME, ONION_HOSTNAME, EXIT_HOSTNAME, BAD_HOSTNAME
2492 } hostname_type_t;
2493 hostname_type_t parse_extended_hostname(char *address);
2495 /********************************* connection_or.c ***************************/
2497 void connection_or_remove_from_identity_map(or_connection_t *conn);
2498 void connection_or_clear_identity_map(void);
2499 or_connection_t *connection_or_get_by_identity_digest(const char *digest);
2501 int connection_or_reached_eof(or_connection_t *conn);
2502 int connection_or_process_inbuf(or_connection_t *conn);
2503 int connection_or_flushed_some(or_connection_t *conn);
2504 int connection_or_finished_flushing(or_connection_t *conn);
2505 int connection_or_finished_connecting(or_connection_t *conn);
2507 or_connection_t *connection_or_connect(uint32_t addr, uint16_t port,
2508 const char *id_digest);
2510 int connection_tls_start_handshake(or_connection_t *conn, int receiving);
2511 int connection_tls_continue_handshake(or_connection_t *conn);
2513 void connection_or_write_cell_to_buf(const cell_t *cell,
2514 or_connection_t *conn);
2515 int connection_or_send_destroy(uint16_t circ_id, or_connection_t *conn,
2516 int reason);
2518 void cell_pack(packed_cell_t *dest, const cell_t *src);
2520 /********************************* control.c ***************************/
2522 typedef enum circuit_status_event_t {
2523 CIRC_EVENT_LAUNCHED = 0,
2524 CIRC_EVENT_BUILT = 1,
2525 CIRC_EVENT_EXTENDED = 2,
2526 CIRC_EVENT_FAILED = 3,
2527 CIRC_EVENT_CLOSED = 4,
2528 } circuit_status_event_t;
2530 typedef enum stream_status_event_t {
2531 STREAM_EVENT_SENT_CONNECT = 0,
2532 STREAM_EVENT_SENT_RESOLVE = 1,
2533 STREAM_EVENT_SUCCEEDED = 2,
2534 STREAM_EVENT_FAILED = 3,
2535 STREAM_EVENT_CLOSED = 4,
2536 STREAM_EVENT_NEW = 5,
2537 STREAM_EVENT_NEW_RESOLVE = 6,
2538 STREAM_EVENT_FAILED_RETRIABLE = 7,
2539 STREAM_EVENT_REMAP = 8
2540 } stream_status_event_t;
2542 typedef enum or_conn_status_event_t {
2543 OR_CONN_EVENT_LAUNCHED = 0,
2544 OR_CONN_EVENT_CONNECTED = 1,
2545 OR_CONN_EVENT_FAILED = 2,
2546 OR_CONN_EVENT_CLOSED = 3,
2547 OR_CONN_EVENT_NEW = 4,
2548 } or_conn_status_event_t;
2550 void control_update_global_event_mask(void);
2551 void control_adjust_event_log_severity(void);
2553 /** Execute the statement <b>stmt</b>, which may log events concerning the
2554 * connection <b>conn</b>. To prevent infinite loops, disable log messages
2555 * being sent to controllers if <b>conn</b> is a control connection.
2557 * Stmt must not contain any return or goto statements.
2559 #define CONN_LOG_PROTECT(conn, stmt) \
2560 do { \
2561 int _log_conn_is_control = (conn && conn->type == CONN_TYPE_CONTROL); \
2562 if (_log_conn_is_control) \
2563 disable_control_logging(); \
2564 do {stmt;} while (0); \
2565 if (_log_conn_is_control) \
2566 enable_control_logging(); \
2567 } while (0)
2569 /** Log information about the connection <b>conn</b>, protecting it as with
2570 * CONN_LOG_PROTECT. Example:
2572 * LOG_FN_CONN(conn, (LOG_DEBUG, "Socket %d wants to write", conn->s));
2574 #define LOG_FN_CONN(conn, args) \
2575 CONN_LOG_PROTECT(conn, log_fn args)
2577 int connection_control_finished_flushing(control_connection_t *conn);
2578 int connection_control_reached_eof(control_connection_t *conn);
2579 int connection_control_process_inbuf(control_connection_t *conn);
2581 #define EVENT_AUTHDIR_NEWDESCS 0x000D
2582 int control_event_is_interesting(int event);
2584 int control_event_circuit_status(origin_circuit_t *circ,
2585 circuit_status_event_t e, int reason);
2586 int control_event_stream_status(edge_connection_t *conn,
2587 stream_status_event_t e,
2588 int reason);
2589 int control_tls_error_to_reason(int e);
2590 int control_event_or_conn_status(or_connection_t *conn,
2591 or_conn_status_event_t e, int reason);
2592 int control_event_bandwidth_used(uint32_t n_read, uint32_t n_written);
2593 int control_event_stream_bandwidth_used(void);
2594 void control_event_logmsg(int severity, unsigned int domain, const char *msg);
2595 int control_event_descriptors_changed(smartlist_t *routers);
2596 int control_event_address_mapped(const char *from, const char *to,
2597 time_t expires);
2598 int control_event_or_authdir_new_descriptor(const char *action,
2599 const char *desc,
2600 size_t desclen,
2601 const char *msg);
2602 int control_event_my_descriptor_changed(void);
2603 int control_event_networkstatus_changed(smartlist_t *statuses);
2604 int control_event_networkstatus_changed_single(local_routerstatus_t *rs);
2605 int control_event_general_status(int severity, const char *format, ...)
2606 CHECK_PRINTF(2,3);
2607 int control_event_client_status(int severity, const char *format, ...)
2608 CHECK_PRINTF(2,3);
2609 int control_event_server_status(int severity, const char *format, ...)
2610 CHECK_PRINTF(2,3);
2611 int control_event_guard(const char *nickname, const char *digest,
2612 const char *status);
2614 int init_cookie_authentication(int enabled);
2615 int decode_hashed_password(char *buf, const char *hashed);
2616 void disable_control_logging(void);
2617 void enable_control_logging(void);
2619 #ifdef CONTROL_PRIVATE
2620 /* Used only by control.c and test.c */
2621 size_t write_escaped_data(const char *data, size_t len,
2622 int translate_newlines, char **out);
2623 size_t read_escaped_data(const char *data, size_t len,
2624 int translate_newlines, char **out);
2625 #endif
2627 /********************************* cpuworker.c *****************************/
2629 void cpu_init(void);
2630 void cpuworkers_rotate(void);
2631 int connection_cpu_finished_flushing(connection_t *conn);
2632 int connection_cpu_reached_eof(connection_t *conn);
2633 int connection_cpu_process_inbuf(connection_t *conn);
2634 int assign_to_cpuworker(connection_t *cpuworker, uint8_t question_type,
2635 void *task);
2637 /********************************* directory.c ***************************/
2639 char *authority_type_to_string(authority_type_t auth);
2640 void directory_post_to_dirservers(uint8_t purpose, authority_type_t type,
2641 const char *payload,
2642 size_t payload_len, size_t extrainfo_len);
2643 void directory_get_from_dirserver(uint8_t purpose, const char *resource,
2644 int retry_if_no_servers);
2645 void directory_initiate_command_routerstatus(routerstatus_t *status,
2646 uint8_t purpose,
2647 int anonymized_connection,
2648 const char *resource,
2649 const char *payload,
2650 size_t payload_len);
2652 int parse_http_response(const char *headers, int *code, time_t *date,
2653 compress_method_t *compression, char **response);
2655 int connection_dir_reached_eof(dir_connection_t *conn);
2656 int connection_dir_process_inbuf(dir_connection_t *conn);
2657 int connection_dir_finished_flushing(dir_connection_t *conn);
2658 int connection_dir_finished_connecting(dir_connection_t *conn);
2659 void connection_dir_request_failed(dir_connection_t *conn);
2660 void directory_initiate_command(const char *address, uint32_t addr,
2661 uint16_t or_port, uint16_t dir_port,
2662 int supports_begindir,
2663 const char *digest, uint8_t purpose,
2664 int anonymized_connection,
2665 const char *resource,
2666 const char *payload, size_t payload_len);
2668 int dir_split_resource_into_fingerprints(const char *resource,
2669 smartlist_t *fp_out, int *compresseed_out,
2670 int decode_hex, int sort_uniq);
2671 char *directory_dump_request_log(void);
2672 int router_supports_extrainfo(const char *identity_digest, int is_authority);
2674 /********************************* dirserv.c ***************************/
2676 #define UNNAMED_ROUTER_NICKNAME "Unnamed"
2678 int connection_dirserv_flushed_some(dir_connection_t *conn);
2680 int dirserv_add_own_fingerprint(const char *nickname, crypto_pk_env_t *pk);
2681 int dirserv_load_fingerprint_file(void);
2682 void dirserv_free_fingerprint_list(void);
2683 const char *dirserv_get_nickname_by_digest(const char *digest);
2684 int dirserv_add_multiple_descriptors(const char *desc, uint8_t purpose,
2685 const char **msg);
2686 int dirserv_add_descriptor(routerinfo_t *ri, const char **msg);
2687 int getinfo_helper_dirserv_unregistered(control_connection_t *conn,
2688 const char *question, char **answer);
2689 void dirserv_free_descriptors(void);
2690 int dirserv_thinks_router_is_blatantly_unreachable(routerinfo_t *router,
2691 time_t now);
2692 int list_server_status(smartlist_t *routers, char **router_status_out,
2693 int for_controller);
2694 int dirserv_dump_directory_to_string(char **dir_out,
2695 crypto_pk_env_t *private_key,
2696 int complete);
2697 void directory_set_dirty(void);
2698 cached_dir_t *dirserv_get_directory(void);
2699 cached_dir_t *dirserv_get_runningrouters(void);
2700 void dirserv_set_cached_directory(const char *directory, time_t when,
2701 int is_running_routers);
2702 void dirserv_set_cached_networkstatus_v2(const char *directory,
2703 const char *identity,
2704 time_t published);
2705 void dirserv_clear_old_networkstatuses(time_t cutoff);
2706 void dirserv_clear_old_v1_info(time_t now);
2707 void dirserv_get_networkstatus_v2(smartlist_t *result, const char *key);
2708 void dirserv_get_networkstatus_v2_fingerprints(smartlist_t *result,
2709 const char *key);
2710 int dirserv_get_routerdesc_fingerprints(smartlist_t *fps_out, const char *key,
2711 const char **msg);
2712 int dirserv_get_routerdescs(smartlist_t *descs_out, const char *key,
2713 const char **msg);
2714 void dirserv_orconn_tls_done(const char *address,
2715 uint16_t or_port,
2716 const char *digest_rcvd,
2717 int as_advertised);
2718 void dirserv_test_reachability(int try_all);
2719 int authdir_wants_to_reject_router(routerinfo_t *ri, const char **msg,
2720 int complain);
2721 int dirserv_would_reject_router(routerstatus_t *rs);
2722 int dirserv_statuses_are_old(smartlist_t *fps, time_t cutoff);
2723 size_t dirserv_estimate_data_size(smartlist_t *fps, int is_serverdescs,
2724 int compressed);
2725 int routerstatus_format_entry(char *buf, size_t buf_len,
2726 routerstatus_t *rs, const char *platform,
2727 int first_line_only);
2728 void dirserv_free_all(void);
2729 void cached_dir_decref(cached_dir_t *d);
2731 /********************************* dirvote.c ************************/
2733 void networkstatus_vote_free(networkstatus_vote_t *ns);
2734 char *networkstatus_compute_consensus(smartlist_t *votes,
2735 crypto_pk_env_t *identity_key,
2736 crypto_pk_env_t *signing_key);
2737 networkstatus_voter_info_t *networkstatus_get_voter_by_id(
2738 networkstatus_vote_t *vote,
2739 const char *identity);
2740 int networkstatus_check_consensus_signature(networkstatus_vote_t *consensus);
2742 void authority_cert_free(authority_cert_t *cert);
2743 authority_cert_t *authority_cert_dup(authority_cert_t *cert);
2745 /********************************* dns.c ***************************/
2747 int dns_init(void);
2748 void dns_free_all(void);
2749 uint32_t dns_clip_ttl(uint32_t ttl);
2750 int dns_reset(void);
2751 void connection_dns_remove(edge_connection_t *conn);
2752 void assert_connection_edge_not_dns_pending(edge_connection_t *conn);
2753 void assert_all_pending_dns_resolves_ok(void);
2754 void dns_cancel_pending_resolve(const char *question);
2755 int dns_resolve(edge_connection_t *exitconn);
2756 void dns_launch_correctness_checks(void);
2757 int dns_seems_to_be_broken(void);
2758 void dns_reset_correctness_checks(void);
2760 /********************************* dnsserv.c ************************/
2762 void dnsserv_configure_listener(connection_t *conn);
2763 void dnsserv_close_listener(connection_t *conn);
2764 void dnsserv_resolved(edge_connection_t *conn,
2765 int answer_type,
2766 size_t answer_len,
2767 const char *answer,
2768 int ttl);
2769 void dnsserv_reject_request(edge_connection_t *conn);
2771 /********************************* hibernate.c **********************/
2773 int accounting_parse_options(or_options_t *options, int validate_only);
2774 int accounting_is_enabled(or_options_t *options);
2775 void configure_accounting(time_t now);
2776 void accounting_run_housekeeping(time_t now);
2777 void accounting_add_bytes(size_t n_read, size_t n_written, int seconds);
2778 int accounting_record_bandwidth_usage(time_t now, or_state_t *state);
2779 void hibernate_begin_shutdown(void);
2780 int we_are_hibernating(void);
2781 void consider_hibernation(time_t now);
2782 int getinfo_helper_accounting(control_connection_t *conn,
2783 const char *question, char **answer);
2784 void accounting_set_bandwidth_usage_from_state(or_state_t *state);
2786 /********************************* main.c ***************************/
2788 extern int has_completed_circuit;
2790 int connection_add(connection_t *conn);
2791 int connection_remove(connection_t *conn);
2792 int connection_in_array(connection_t *conn);
2793 void add_connection_to_closeable_list(connection_t *conn);
2794 int connection_is_on_closeable_list(connection_t *conn);
2796 smartlist_t *get_connection_array(void);
2798 void connection_watch_events(connection_t *conn, short events);
2799 int connection_is_reading(connection_t *conn);
2800 void connection_stop_reading(connection_t *conn);
2801 void connection_start_reading(connection_t *conn);
2803 int connection_is_writing(connection_t *conn);
2804 void connection_stop_writing(connection_t *conn);
2805 void connection_start_writing(connection_t *conn);
2807 void connection_stop_reading_from_linked_conn(connection_t *conn);
2809 void directory_all_unreachable(time_t now);
2810 void directory_info_has_arrived(time_t now, int from_cache);
2812 void ip_address_changed(int at_interface);
2813 void dns_servers_relaunch_checks(void);
2815 void control_signal_act(int the_signal);
2816 void handle_signals(int is_parent);
2817 void tor_cleanup(void);
2818 void tor_free_all(int postfork);
2820 int tor_main(int argc, char *argv[]);
2822 /********************************* onion.c ***************************/
2824 int onion_pending_add(or_circuit_t *circ);
2825 or_circuit_t *onion_next_task(void);
2826 void onion_pending_remove(or_circuit_t *circ);
2828 int onion_skin_create(crypto_pk_env_t *router_key,
2829 crypto_dh_env_t **handshake_state_out,
2830 char *onion_skin_out);
2832 int onion_skin_server_handshake(const char *onion_skin,
2833 crypto_pk_env_t *private_key,
2834 crypto_pk_env_t *prev_private_key,
2835 char *handshake_reply_out,
2836 char *key_out,
2837 size_t key_out_len);
2839 int onion_skin_client_handshake(crypto_dh_env_t *handshake_state,
2840 const char *handshake_reply,
2841 char *key_out,
2842 size_t key_out_len);
2844 int fast_server_handshake(const char *key_in,
2845 char *handshake_reply_out,
2846 char *key_out,
2847 size_t key_out_len);
2849 int fast_client_handshake(const char *handshake_state,
2850 const char *handshake_reply_out,
2851 char *key_out,
2852 size_t key_out_len);
2854 void clear_pending_onions(void);
2856 /********************************* policies.c ************************/
2858 /* (length of "accept 255.255.255.255/255.255.255.255:65535-65535\n" plus a
2859 * nul.)
2861 #define POLICY_BUF_LEN 52
2863 typedef enum {
2864 ADDR_POLICY_ACCEPTED=0,
2865 ADDR_POLICY_REJECTED=-1,
2866 ADDR_POLICY_PROBABLY_ACCEPTED=1,
2867 ADDR_POLICY_PROBABLY_REJECTED=2
2868 } addr_policy_result_t;
2870 int firewall_is_fascist_or(void);
2871 int fascist_firewall_allows_address_or(uint32_t addr, uint16_t port);
2872 int fascist_firewall_allows_address_dir(uint32_t addr, uint16_t port);
2873 int dir_policy_permits_address(uint32_t addr);
2874 int socks_policy_permits_address(uint32_t addr);
2875 int authdir_policy_permits_address(uint32_t addr, uint16_t port);
2876 int authdir_policy_valid_address(uint32_t addr, uint16_t port);
2877 int authdir_policy_badexit_address(uint32_t addr, uint16_t port);
2879 int validate_addr_policies(or_options_t *options, char **msg);
2880 void policies_parse_from_options(or_options_t *options);
2882 int cmp_addr_policies(addr_policy_t *a, addr_policy_t *b);
2883 addr_policy_result_t compare_addr_to_addr_policy(uint32_t addr,
2884 uint16_t port, addr_policy_t *policy);
2885 int policies_parse_exit_policy(config_line_t *cfg,
2886 addr_policy_t **dest,
2887 int rejectprivate);
2888 int exit_policy_is_general_exit(addr_policy_t *policy);
2889 int policy_is_reject_star(addr_policy_t *policy);
2890 int getinfo_helper_policies(control_connection_t *conn,
2891 const char *question, char **answer);
2892 int policy_write_item(char *buf, size_t buflen, addr_policy_t *policy);
2894 void addr_policy_free(addr_policy_t *p);
2895 void policies_free_all(void);
2897 /********************************* relay.c ***************************/
2899 extern uint64_t stats_n_relay_cells_relayed;
2900 extern uint64_t stats_n_relay_cells_delivered;
2902 int circuit_receive_relay_cell(cell_t *cell, circuit_t *circ,
2903 int cell_direction);
2905 void relay_header_pack(char *dest, const relay_header_t *src);
2906 void relay_header_unpack(relay_header_t *dest, const char *src);
2907 int relay_send_command_from_edge(uint16_t stream_id, circuit_t *circ,
2908 int relay_command, const char *payload,
2909 size_t payload_len, crypt_path_t *cpath_layer);
2910 int connection_edge_send_command(edge_connection_t *fromconn,
2911 int relay_command, const char *payload,
2912 size_t payload_len);
2913 int connection_edge_package_raw_inbuf(edge_connection_t *conn,
2914 int package_partial);
2915 void connection_edge_consider_sending_sendme(edge_connection_t *conn);
2916 socks5_reply_status_t connection_edge_end_reason_socks5_response(int reason);
2917 int errno_to_end_reason(int e);
2919 extern uint64_t stats_n_data_cells_packaged;
2920 extern uint64_t stats_n_data_bytes_packaged;
2921 extern uint64_t stats_n_data_cells_received;
2922 extern uint64_t stats_n_data_bytes_received;
2924 void init_cell_pool(void);
2925 void free_cell_pool(void);
2926 void clean_cell_pool(void);
2927 void dump_cell_pool_usage(int severity);
2929 void cell_queue_clear(cell_queue_t *queue);
2930 void cell_queue_append(cell_queue_t *queue, packed_cell_t *cell);
2931 void cell_queue_append_packed_copy(cell_queue_t *queue, const cell_t *cell);
2933 void append_cell_to_circuit_queue(circuit_t *circ, or_connection_t *orconn,
2934 cell_t *cell, int direction);
2935 void connection_or_unlink_all_active_circs(or_connection_t *conn);
2936 int connection_or_flush_from_first_active_circuit(or_connection_t *conn,
2937 int max);
2938 void assert_active_circuits_ok(or_connection_t *orconn);
2939 void make_circuit_inactive_on_conn(circuit_t *circ, or_connection_t *conn);
2940 void make_circuit_active_on_conn(circuit_t *circ, or_connection_t *conn);
2941 void circuit_clear_cell_queue(circuit_t *circ, or_connection_t *orconn);
2943 /********************************* rephist.c ***************************/
2945 void rep_hist_init(void);
2946 void rep_hist_note_connect_failed(const char* nickname, time_t when);
2947 void rep_hist_note_connect_succeeded(const char* nickname, time_t when);
2948 void rep_hist_note_disconnect(const char* nickname, time_t when);
2949 void rep_hist_note_connection_died(const char* nickname, time_t when);
2950 void rep_hist_note_extend_succeeded(const char *from_name,
2951 const char *to_name);
2952 void rep_hist_note_extend_failed(const char *from_name, const char *to_name);
2953 void rep_hist_dump_stats(time_t now, int severity);
2954 void rep_hist_note_bytes_read(int num_bytes, time_t when);
2955 void rep_hist_note_bytes_written(int num_bytes, time_t when);
2956 int rep_hist_bandwidth_assess(void);
2957 char *rep_hist_get_bandwidth_lines(int for_extrainfo);
2958 void rep_hist_update_state(or_state_t *state);
2959 int rep_hist_load_state(or_state_t *state, char **err);
2960 void rep_history_clean(time_t before);
2962 void rep_hist_note_used_port(uint16_t port, time_t now);
2963 smartlist_t *rep_hist_get_predicted_ports(time_t now);
2964 void rep_hist_note_used_resolve(time_t now);
2965 void rep_hist_note_used_internal(time_t now, int need_uptime,
2966 int need_capacity);
2967 int rep_hist_get_predicted_internal(time_t now, int *need_uptime,
2968 int *need_capacity);
2970 int any_predicted_circuits(time_t now);
2971 int rep_hist_circbuilding_dormant(time_t now);
2973 /** Possible public/private key operations in Tor: used to keep track of where
2974 * we're spending our time. */
2975 typedef enum {
2976 SIGN_DIR, SIGN_RTR,
2977 VERIFY_DIR, VERIFY_RTR,
2978 ENC_ONIONSKIN, DEC_ONIONSKIN,
2979 TLS_HANDSHAKE_C, TLS_HANDSHAKE_S,
2980 REND_CLIENT, REND_MID, REND_SERVER,
2981 } pk_op_t;
2982 void note_crypto_pk_op(pk_op_t operation);
2983 void dump_pk_ops(int severity);
2985 void rep_hist_free_all(void);
2987 /* for hidden service usage statistics */
2988 void hs_usage_note_publish_total(const char *service_id, time_t now);
2989 void hs_usage_note_publish_novel(const char *service_id, time_t now);
2990 void hs_usage_note_fetch_total(const char *service_id, time_t now);
2991 void hs_usage_note_fetch_successful(const char *service_id, time_t now);
2992 void hs_usage_write_statistics_to_file(time_t now);
2993 void hs_usage_free_all(void);
2995 /********************************* rendclient.c ***************************/
2997 void rend_client_introcirc_has_opened(origin_circuit_t *circ);
2998 void rend_client_rendcirc_has_opened(origin_circuit_t *circ);
2999 int rend_client_introduction_acked(origin_circuit_t *circ, const char *request,
3000 size_t request_len);
3001 void rend_client_refetch_renddesc(const char *query);
3002 int rend_client_remove_intro_point(extend_info_t *failed_intro,
3003 const char *query);
3004 int rend_client_rendezvous_acked(origin_circuit_t *circ, const char *request,
3005 size_t request_len);
3006 int rend_client_receive_rendezvous(origin_circuit_t *circ, const char *request,
3007 size_t request_len);
3008 void rend_client_desc_here(const char *query);
3010 extend_info_t *rend_client_get_random_intro(const char *query);
3012 int rend_client_send_introduction(origin_circuit_t *introcirc,
3013 origin_circuit_t *rendcirc);
3015 /********************************* rendcommon.c ***************************/
3017 /** Information used to connect to a hidden service. */
3018 typedef struct rend_service_descriptor_t {
3019 crypto_pk_env_t *pk; /**< This service's public key. */
3020 int version; /**< 0 or 1. */
3021 time_t timestamp; /**< Time when the descriptor was generated. */
3022 uint16_t protocols; /**< Bitmask: which rendezvous protocols are supported?
3023 * (We allow bits '0', '1', and '2' to be set.) */
3024 int n_intro_points; /**< Number of introduction points. */
3025 /** Array of n_intro_points elements for this service's introduction points'
3026 * nicknames. Elements are removed from this array if introduction attempts
3027 * fail. */
3028 char **intro_points;
3029 /** Array of n_intro_points elements for this service's introduction points'
3030 * extend_infos, or NULL if this descriptor is V0. Elements are removed
3031 * from this array if introduction attempts fail. If this array is present,
3032 * its elements correspond to the elements of intro_points. */
3033 extend_info_t **intro_point_extend_info;
3034 } rend_service_descriptor_t;
3036 int rend_cmp_service_ids(const char *one, const char *two);
3038 void rend_process_relay_cell(circuit_t *circ, int command, size_t length,
3039 const char *payload);
3041 void rend_service_descriptor_free(rend_service_descriptor_t *desc);
3042 int rend_encode_service_descriptor(rend_service_descriptor_t *desc,
3043 int version,
3044 crypto_pk_env_t *key,
3045 char **str_out,
3046 size_t *len_out);
3047 rend_service_descriptor_t *rend_parse_service_descriptor(const char *str,
3048 size_t len);
3049 int rend_get_service_id(crypto_pk_env_t *pk, char *out);
3051 /** A cached rendezvous descriptor. */
3052 typedef struct rend_cache_entry_t {
3053 size_t len; /**< Length of <b>desc</b> */
3054 time_t received; /**< When was the descriptor received? */
3055 char *desc; /**< Service descriptor */
3056 rend_service_descriptor_t *parsed; /**< Parsed value of 'desc' */
3057 } rend_cache_entry_t;
3059 void rend_cache_init(void);
3060 void rend_cache_clean(void);
3061 void rend_cache_free_all(void);
3062 int rend_valid_service_id(const char *query);
3063 int rend_cache_lookup_desc(const char *query, int version, const char **desc,
3064 size_t *desc_len);
3065 int rend_cache_lookup_entry(const char *query, int version,
3066 rend_cache_entry_t **entry_out);
3067 int rend_cache_store(const char *desc, size_t desc_len, int published);
3068 int rend_cache_size(void);
3070 /********************************* rendservice.c ***************************/
3072 int num_rend_services(void);
3073 int rend_config_services(or_options_t *options, int validate_only);
3074 int rend_service_load_keys(void);
3075 void rend_services_init(void);
3076 void rend_services_introduce(void);
3077 void rend_consider_services_upload(time_t now);
3079 void rend_service_intro_has_opened(origin_circuit_t *circuit);
3080 int rend_service_intro_established(origin_circuit_t *circuit,
3081 const char *request,
3082 size_t request_len);
3083 void rend_service_rendezvous_has_opened(origin_circuit_t *circuit);
3084 int rend_service_introduce(origin_circuit_t *circuit, const char *request,
3085 size_t request_len);
3086 void rend_service_relaunch_rendezvous(origin_circuit_t *oldcirc);
3087 int rend_service_set_connection_addr_port(edge_connection_t *conn,
3088 origin_circuit_t *circ);
3089 void rend_service_dump_stats(int severity);
3090 void rend_service_free_all(void);
3092 /********************************* rendmid.c *******************************/
3093 int rend_mid_establish_intro(or_circuit_t *circ, const char *request,
3094 size_t request_len);
3095 int rend_mid_introduce(or_circuit_t *circ, const char *request,
3096 size_t request_len);
3097 int rend_mid_establish_rendezvous(or_circuit_t *circ, const char *request,
3098 size_t request_len);
3099 int rend_mid_rendezvous(or_circuit_t *circ, const char *request,
3100 size_t request_len);
3102 /********************************* router.c ***************************/
3104 crypto_pk_env_t *get_onion_key(void);
3105 time_t get_onion_key_set_at(void);
3106 void set_identity_key(crypto_pk_env_t *k);
3107 crypto_pk_env_t *get_identity_key(void);
3108 int identity_key_is_set(void);
3109 authority_cert_t *get_my_v3_authority_cert(void);
3110 crypto_pk_env_t *get_my_v3_authority_signing_key(void);
3111 void dup_onion_keys(crypto_pk_env_t **key, crypto_pk_env_t **last);
3112 void rotate_onion_key(void);
3113 crypto_pk_env_t *init_key_from_file(const char *fname, int generate,
3114 int severity);
3115 int init_keys(void);
3117 int check_whether_orport_reachable(void);
3118 int check_whether_dirport_reachable(void);
3119 void consider_testing_reachability(int test_or, int test_dir);
3120 void router_orport_found_reachable(void);
3121 void router_dirport_found_reachable(void);
3122 void router_perform_bandwidth_test(int num_circs, time_t now);
3124 int authdir_mode(or_options_t *options);
3125 int authdir_mode_v1(or_options_t *options);
3126 int authdir_mode_v2(or_options_t *options);
3127 int authdir_mode_handles_descs(or_options_t *options);
3128 int authdir_mode_publishes_statuses(or_options_t *options);
3129 int authdir_mode_tests_reachability(or_options_t *options);
3130 int authdir_mode_bridge(or_options_t *options);
3131 int clique_mode(or_options_t *options);
3132 int server_mode(or_options_t *options);
3133 int advertised_server_mode(void);
3134 int proxy_mode(or_options_t *options);
3135 void consider_publishable_server(int force);
3137 int router_is_clique_mode(routerinfo_t *router);
3138 void router_upload_dir_desc_to_dirservers(int force);
3139 void mark_my_descriptor_dirty_if_older_than(time_t when);
3140 void mark_my_descriptor_dirty(void);
3141 void check_descriptor_bandwidth_changed(time_t now);
3142 void check_descriptor_ipaddress_changed(time_t now);
3143 void router_new_address_suggestion(const char *suggestion);
3144 int router_compare_to_my_exit_policy(edge_connection_t *conn);
3145 routerinfo_t *router_get_my_routerinfo(void);
3146 extrainfo_t *router_get_my_extrainfo(void);
3147 const char *router_get_my_descriptor(void);
3148 int router_digest_is_me(const char *digest);
3149 int router_is_me(routerinfo_t *router);
3150 int router_fingerprint_is_me(const char *fp);
3151 int router_pick_published_address(or_options_t *options, uint32_t *addr);
3152 int router_rebuild_descriptor(int force);
3153 int router_dump_router_to_string(char *s, size_t maxlen, routerinfo_t *router,
3154 crypto_pk_env_t *ident_key);
3155 int extrainfo_dump_to_string(char *s, size_t maxlen, extrainfo_t *extrainfo,
3156 crypto_pk_env_t *ident_key);
3157 int is_legal_nickname(const char *s);
3158 int is_legal_nickname_or_hexdigest(const char *s);
3159 int is_legal_hexdigest(const char *s);
3160 void router_get_verbose_nickname(char *buf, routerinfo_t *router);
3161 void router_reset_warnings(void);
3162 void router_reset_reachability(void);
3163 void router_free_all(void);
3165 #ifdef ROUTER_PRIVATE
3166 /* Used only by router.c and test.c */
3167 void get_platform_str(char *platform, size_t len);
3168 #endif
3170 /********************************* routerlist.c ***************************/
3172 /** Represents information about a single trusted directory server. */
3173 typedef struct trusted_dir_server_t {
3174 char *description;
3175 char *nickname;
3176 char *address; /**< Hostname. */
3177 uint32_t addr; /**< IPv4 address. */
3178 uint16_t dir_port; /**< Directory port. */
3179 uint16_t or_port; /**< OR port: Used for tunneling connections. */
3180 char digest[DIGEST_LEN]; /**< Digest of identity key. */
3181 char v3_identity_digest[DIGEST_LEN]; /**< Digest of v3 (authority only,
3182 * high-security) identity key. */
3184 unsigned int is_running:1; /**< True iff we think this server is running. */
3186 /** True iff this server has accepted the most recent server descriptor
3187 * we tried to upload to it. */
3188 unsigned int has_accepted_serverdesc:1;
3190 /** What kind of authority is this? (Bitfield.) */
3191 authority_type_t type;
3193 authority_cert_t *v3_cert; /**< V3 key certificate for this authority */
3195 int n_networkstatus_failures; /**< How many times have we asked for this
3196 * server's network-status unsuccessfully? */
3197 local_routerstatus_t fake_status; /**< Used when we need to pass this trusted
3198 * dir_server_t to directory_initiate_command_*
3199 * as a routerstatus_t. Not updated by the
3200 * router-status management code!
3202 } trusted_dir_server_t;
3204 int router_reload_router_list(void);
3205 int router_reload_networkstatus(void);
3206 smartlist_t *router_get_trusted_dir_servers(void);
3207 routerstatus_t *router_pick_directory_server(int requireother,
3208 int fascistfirewall,
3209 authority_type_t type,
3210 int retry_if_no_servers);
3211 routerstatus_t *router_pick_trusteddirserver(authority_type_t type,
3212 int requireother,
3213 int fascistfirewall,
3214 int retry_if_no_servers);
3215 trusted_dir_server_t *router_get_trusteddirserver_by_digest(
3216 const char *digest);
3217 trusted_dir_server_t *trusteddirserver_get_by_v3_auth_digest(
3218 const char *digest);
3219 void routerlist_add_family(smartlist_t *sl, routerinfo_t *router);
3220 void add_nickname_list_to_smartlist(smartlist_t *sl, const char *list,
3221 int must_be_running);
3222 int router_nickname_is_in_list(routerinfo_t *router, const char *list);
3223 routerinfo_t *routerlist_find_my_routerinfo(void);
3224 routerinfo_t *router_find_exact_exit_enclave(const char *address,
3225 uint16_t port);
3227 #define ROUTER_REQUIRED_MIN_BANDWIDTH 10000
3229 #define ROUTER_MAX_DECLARED_BANDWIDTH INT32_MAX
3230 int router_is_unreliable(routerinfo_t *router, int need_uptime,
3231 int need_capacity, int need_guard);
3232 uint32_t router_get_advertised_bandwidth(routerinfo_t *router);
3233 routerinfo_t *routerlist_sl_choose_by_bandwidth(smartlist_t *sl, int for_exit);
3234 routerstatus_t *routerstatus_sl_choose_by_bandwidth(smartlist_t *sl);
3236 routerinfo_t *router_choose_random_node(const char *preferred,
3237 const char *excluded,
3238 smartlist_t *excludedsmartlist,
3239 int need_uptime, int need_bandwidth,
3240 int need_guard,
3241 int allow_invalid, int strict,
3242 int weight_for_exit);
3243 routerinfo_t *router_get_by_nickname(const char *nickname,
3244 int warn_if_unnamed);
3245 int hexdigest_to_digest(const char *hexdigest, char *digest);
3246 routerinfo_t *router_get_by_hexdigest(const char *hexdigest);
3247 routerinfo_t *router_get_by_digest(const char *digest);
3248 signed_descriptor_t *router_get_by_descriptor_digest(const char *digest);
3249 signed_descriptor_t *router_get_by_extrainfo_digest(const char *digest);
3250 signed_descriptor_t *extrainfo_get_by_descriptor_digest(const char *digest);
3251 const char *signed_descriptor_get_body(signed_descriptor_t *desc);
3252 int router_digest_version_as_new_as(const char *digest, const char *cutoff);
3253 int router_digest_is_trusted_dir(const char *digest);
3254 routerlist_t *router_get_routerlist(void);
3255 void routerlist_reset_warnings(void);
3256 void routerlist_free(routerlist_t *routerlist);
3257 void dump_routerlist_mem_usage(int severity);
3258 void routerlist_remove(routerlist_t *rl, routerinfo_t *ri, int idx,
3259 int make_old);
3260 void routerinfo_free(routerinfo_t *router);
3261 void extrainfo_free(extrainfo_t *extrainfo);
3263 void routerstatus_free(routerstatus_t *routerstatus);
3264 void networkstatus_free(networkstatus_t *networkstatus);
3265 void routerlist_free_all(void);
3266 void router_set_status(const char *digest, int up);
3267 void routerlist_remove_old_routers(void);
3268 void networkstatus_list_clean(time_t now);
3269 int router_add_to_routerlist(routerinfo_t *router, const char **msg,
3270 int from_cache, int from_fetch);
3271 void router_add_extrainfo_to_routerlist(extrainfo_t *ei, const char **msg,
3272 int from_cache, int from_fetch);
3273 int router_load_single_router(const char *s, uint8_t purpose,
3274 const char **msg);
3275 void router_load_routers_from_string(const char *s, const char *eos,
3276 saved_location_t saved_location,
3277 smartlist_t *requested_fingerprints);
3278 void router_load_extrainfo_from_string(const char *s, const char *eos,
3279 saved_location_t saved_location,
3280 smartlist_t *requested_fps);
3282 typedef enum {
3283 NS_FROM_CACHE, NS_FROM_DIR_BY_FP, NS_FROM_DIR_ALL, NS_GENERATED
3284 } networkstatus_source_t;
3285 int router_set_networkstatus(const char *s, time_t arrived_at,
3286 networkstatus_source_t source,
3287 smartlist_t *requested_fingerprints);
3288 char *networkstatus_get_cache_filename(const char *identity_digest);
3290 int router_exit_policy_all_routers_reject(uint32_t addr, uint16_t port,
3291 int need_uptime);
3292 int router_exit_policy_rejects_all(routerinfo_t *router);
3294 void add_trusted_dir_server(const char *nickname, const char *address,
3295 uint16_t dir_port, uint16_t or_port,
3296 const char *digest, authority_type_t type);
3297 void clear_trusted_dir_servers(void);
3298 int any_trusted_dir_is_v1_authority(void);
3299 networkstatus_t *networkstatus_get_by_digest(const char *digest);
3300 local_routerstatus_t *router_get_combined_status_by_digest(const char *digest);
3301 local_routerstatus_t *router_get_combined_status_by_descriptor_digest(
3302 const char *digest);
3304 routerstatus_t *routerstatus_get_by_hexdigest(const char *hexdigest);
3305 void update_networkstatus_downloads(time_t now);
3306 void update_router_descriptor_downloads(time_t now);
3307 void update_extrainfo_downloads(time_t now);
3308 void routers_update_all_from_networkstatus(time_t now);
3309 void routers_update_status_from_networkstatus(smartlist_t *routers,
3310 int reset_failures);
3311 smartlist_t *router_list_superseded(void);
3312 int router_have_minimum_dir_info(void);
3313 void networkstatus_list_update_recent(time_t now);
3314 void router_reset_descriptor_download_failures(void);
3315 void router_reset_status_download_failures(void);
3316 int router_differences_are_cosmetic(routerinfo_t *r1, routerinfo_t *r2);
3317 int routerinfo_incompatible_with_extrainfo(routerinfo_t *ri, extrainfo_t *ei,
3318 const char **msg);
3319 const char *esc_router_info(routerinfo_t *router);
3321 char *networkstatus_getinfo_helper_single(routerstatus_t *rs);
3322 int getinfo_helper_networkstatus(control_connection_t *conn,
3323 const char *question, char **answer);
3325 void routerlist_assert_ok(routerlist_t *rl);
3326 void routerlist_check_bug_417(void);
3328 int trusted_dirs_reload_certs(void);
3329 int trusted_dirs_load_certs_from_string(const char *contents, int from_store);
3330 void trusted_dirs_flush_certs_to_disk(void);
3332 /********************************* routerparse.c ************************/
3334 #define MAX_STATUS_TAG_LEN 32
3335 /** Structure to hold parsed Tor versions. This is a little messier
3336 * than we would like it to be, because we changed version schemes with 0.1.0.
3338 * See version-spec.txt for the whole business.
3340 typedef struct tor_version_t {
3341 int major;
3342 int minor;
3343 int micro;
3344 /** Release status. For version in the post-0.1 format, this is always
3345 * VER_RELEASE. */
3346 enum { VER_PRE=0, VER_RC=1, VER_RELEASE=2, } status;
3347 int patchlevel;
3348 char status_tag[MAX_STATUS_TAG_LEN];
3349 int svn_revision;
3350 } tor_version_t;
3352 typedef enum version_status_t {
3353 VS_RECOMMENDED=0, /**< This version is listed as recommended. */
3354 VS_OLD=1, /**< This version is older than any recommended version. */
3355 VS_NEW=2, /**< This version is newer than any recommended version. */
3356 VS_NEW_IN_SERIES=3, /**< This version is newer than any recommended version
3357 * in its series, but later recommended versions exist.
3359 VS_UNRECOMMENDED=4 /**< This version is not recommended (general case) */
3360 } version_status_t;
3362 typedef struct combined_version_status_t {
3363 /** How many networkstatuses claim to know about versions? */
3364 int n_versioning;
3365 /** What do the majority of networkstatuses believe about this version? */
3366 version_status_t consensus;
3367 /** How many networkstatuses constitute the majority? */
3368 int n_concurring;
3369 } combined_version_status_t;
3370 char *compute_recommended_versions(time_t now, int client,
3371 const char *my_version,
3372 combined_version_status_t *status_out);
3374 int router_get_router_hash(const char *s, char *digest);
3375 int router_get_dir_hash(const char *s, char *digest);
3376 int router_get_runningrouters_hash(const char *s, char *digest);
3377 int router_get_networkstatus_v2_hash(const char *s, char *digest);
3378 int router_get_networkstatus_v3_hash(const char *s, char *digest);
3379 int router_get_extrainfo_hash(const char *s, char *digest);
3380 int router_append_dirobj_signature(char *buf, size_t buf_len,
3381 const char *digest,
3382 crypto_pk_env_t *private_key);
3383 int router_parse_list_from_string(const char **s, const char *eos,
3384 smartlist_t *dest,
3385 saved_location_t saved_location,
3386 int is_extrainfo);
3387 int router_parse_routerlist_from_directory(const char *s,
3388 routerlist_t **dest,
3389 crypto_pk_env_t *pkey,
3390 int check_version,
3391 int write_to_cache);
3392 int router_parse_runningrouters(const char *str);
3393 int router_parse_directory(const char *str);
3394 routerinfo_t *router_parse_entry_from_string(const char *s, const char *end,
3395 int cache_copy);
3396 extrainfo_t *extrainfo_parse_entry_from_string(const char *s, const char *end,
3397 int cache_copy, digestmap_t *routermap);
3398 addr_policy_t *router_parse_addr_policy_from_string(const char *s,
3399 int assume_action);
3400 version_status_t tor_version_is_obsolete(const char *myversion,
3401 const char *versionlist);
3402 version_status_t version_status_join(version_status_t a, version_status_t b);
3403 int tor_version_parse(const char *s, tor_version_t *out);
3404 int tor_version_as_new_as(const char *platform, const char *cutoff);
3405 int tor_version_compare(tor_version_t *a, tor_version_t *b);
3406 void sort_version_list(smartlist_t *lst, int remove_duplicates);
3407 void assert_addr_policy_ok(addr_policy_t *t);
3408 void dump_distinct_digest_count(int severity);
3410 networkstatus_t *networkstatus_parse_from_string(const char *s);
3411 networkstatus_vote_t *networkstatus_parse_vote_from_string(const char *s,
3412 int is_vote);
3414 authority_cert_t *authority_cert_parse_from_string(const char *s,
3415 const char **end_of_string);
3417 #endif