2004-11-07 02:33:06 +01:00
|
|
|
/* Copyright 2001 Matej Pfajfar.
|
|
|
|
* Copyright 2001-2004 Roger Dingledine.
|
2005-04-01 22:15:56 +02:00
|
|
|
* Copyright 2004-2005 Roger Dingledine, Nick Mathewson. */
|
Implemented link padding and receiver token buckets
Each socket reads at most 'bandwidth' bytes per second sustained, but
can handle bursts of up to 10*bandwidth bytes.
Cells are now sent out at evenly-spaced intervals, with padding sent
out otherwise. Set Linkpadding=0 in the rc file to send cells as soon
as they're available (and to never send padding cells).
Added license/copyrights statements at the top of most files.
router->min and router->max have been merged into a single 'bandwidth'
value. We should make the routerinfo_t reflect this (want to do that,
Mat?)
As the bandwidth increases, and we want to stop sleeping more and more
frequently to send a single cell, cpu usage goes up. At 128kB/s we're
pretty much calling poll with a timeout of 1ms or even 0ms. The current
code takes a timeout of 0-9ms and makes it 10ms. prepare_for_poll()
handles everything that should have happened in the past, so as long as
our buffers don't get too full in that 10ms, we're ok.
Speaking of too full, if you run three servers at 100kB/s with -l debug,
it spends too much time printing debugging messages to be able to keep
up with the cells. The outbuf ultimately fills up and it kills that
connection. If you run with -l err, it works fine up through 500kB/s and
probably beyond. Down the road we'll want to teach it to recognize when
an outbuf is getting full, and back off.
svn:r50
2002-07-16 03:12:15 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
/* $Id$ */
|
2004-11-29 23:25:31 +01:00
|
|
|
const char connection_c_id[] = "$Id$";
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2004-05-10 05:56:58 +02:00
|
|
|
/**
|
|
|
|
* \file connection.c
|
2004-05-10 09:37:10 +02:00
|
|
|
* \brief General high-level functions to handle reading and writing
|
|
|
|
* on connections.
|
2004-05-10 05:56:58 +02:00
|
|
|
**/
|
|
|
|
|
2002-06-27 00:45:49 +02:00
|
|
|
#include "or.h"
|
|
|
|
|
2004-05-20 04:42:50 +02:00
|
|
|
static int connection_create_listener(const char *bindaddress,
|
|
|
|
uint16_t bindport, int type);
|
2003-09-08 12:59:00 +02:00
|
|
|
static int connection_init_accepted_conn(connection_t *conn);
|
2003-10-09 20:45:14 +02:00
|
|
|
static int connection_handle_listener_read(connection_t *conn, int new_type);
|
2004-03-14 17:00:52 +01:00
|
|
|
static int connection_receiver_bucket_should_increase(connection_t *conn);
|
2004-05-12 21:17:09 +02:00
|
|
|
static int connection_finished_flushing(connection_t *conn);
|
|
|
|
static int connection_finished_connecting(connection_t *conn);
|
2004-11-21 11:14:57 +01:00
|
|
|
static int connection_reached_eof(connection_t *conn);
|
2004-11-21 08:43:12 +01:00
|
|
|
static int connection_read_to_buf(connection_t *conn, int *max_to_read);
|
|
|
|
static int connection_process_inbuf(connection_t *conn, int package_partial);
|
2004-11-02 04:02:17 +01:00
|
|
|
static int connection_bucket_read_limit(connection_t *conn);
|
Implemented link padding and receiver token buckets
Each socket reads at most 'bandwidth' bytes per second sustained, but
can handle bursts of up to 10*bandwidth bytes.
Cells are now sent out at evenly-spaced intervals, with padding sent
out otherwise. Set Linkpadding=0 in the rc file to send cells as soon
as they're available (and to never send padding cells).
Added license/copyrights statements at the top of most files.
router->min and router->max have been merged into a single 'bandwidth'
value. We should make the routerinfo_t reflect this (want to do that,
Mat?)
As the bandwidth increases, and we want to stop sleeping more and more
frequently to send a single cell, cpu usage goes up. At 128kB/s we're
pretty much calling poll with a timeout of 1ms or even 0ms. The current
code takes a timeout of 0-9ms and makes it 10ms. prepare_for_poll()
handles everything that should have happened in the past, so as long as
our buffers don't get too full in that 10ms, we're ok.
Speaking of too full, if you run three servers at 100kB/s with -l debug,
it spends too much time printing debugging messages to be able to keep
up with the cells. The outbuf ultimately fills up and it kills that
connection. If you run with -l err, it works fine up through 500kB/s and
probably beyond. Down the road we'll want to teach it to recognize when
an outbuf is getting full, and back off.
svn:r50
2002-07-16 03:12:15 +02:00
|
|
|
|
|
|
|
/**************************************************************/
|
|
|
|
|
2005-06-11 20:52:12 +02:00
|
|
|
/**
|
|
|
|
* Return the human-readable name for the connection type <b>type</b>
|
|
|
|
*/
|
2005-04-07 22:25:22 +02:00
|
|
|
const char *
|
|
|
|
conn_type_to_string(int type)
|
|
|
|
{
|
|
|
|
static char buf[64];
|
|
|
|
switch (type) {
|
|
|
|
case CONN_TYPE_OR_LISTENER: return "OR listener";
|
|
|
|
case CONN_TYPE_OR: return "OR";
|
|
|
|
case CONN_TYPE_EXIT: return "Exit";
|
2005-07-14 10:43:19 +02:00
|
|
|
case CONN_TYPE_AP_LISTENER: return "Socks listener";
|
|
|
|
case CONN_TYPE_AP: return "Socks";
|
|
|
|
case CONN_TYPE_DIR_LISTENER: return "Directory listener";
|
|
|
|
case CONN_TYPE_DIR: return "Directory";
|
2005-04-07 22:25:22 +02:00
|
|
|
case CONN_TYPE_DNSWORKER: return "DNS worker";
|
|
|
|
case CONN_TYPE_CPUWORKER: return "CPU worker";
|
|
|
|
case CONN_TYPE_CONTROL_LISTENER: return "Control listener";
|
|
|
|
case CONN_TYPE_CONTROL: return "Control";
|
|
|
|
default:
|
2005-04-07 23:07:19 +02:00
|
|
|
log_fn(LOG_WARN, "Bug: unknown connection type %d", type);
|
2005-04-07 22:25:22 +02:00
|
|
|
tor_snprintf(buf, sizeof(buf), "unknown [%d]", type);
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-11 20:52:12 +02:00
|
|
|
/**
|
|
|
|
* Return the human-readable name for the connection state <b>state</b>
|
|
|
|
* for the connection type <b>type</b>
|
|
|
|
*/
|
2005-04-07 22:25:22 +02:00
|
|
|
const char *
|
2005-06-11 20:52:12 +02:00
|
|
|
conn_state_to_string(int type, int state)
|
|
|
|
{
|
2005-04-07 22:25:22 +02:00
|
|
|
static char buf[96];
|
|
|
|
switch (type) {
|
|
|
|
case CONN_TYPE_OR_LISTENER:
|
|
|
|
case CONN_TYPE_AP_LISTENER:
|
|
|
|
case CONN_TYPE_DIR_LISTENER:
|
|
|
|
case CONN_TYPE_CONTROL_LISTENER:
|
|
|
|
if (state == LISTENER_STATE_READY)
|
|
|
|
return "ready";
|
|
|
|
break;
|
|
|
|
case CONN_TYPE_OR:
|
|
|
|
switch (state) {
|
|
|
|
case OR_CONN_STATE_CONNECTING: return "connect()ing";
|
|
|
|
case OR_CONN_STATE_PROXY_FLUSHING: return "proxy flushing";
|
|
|
|
case OR_CONN_STATE_PROXY_READING: return "proxy reading";
|
|
|
|
case OR_CONN_STATE_HANDSHAKING: return "proxy reading";
|
|
|
|
case OR_CONN_STATE_OPEN: return "open";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CONN_TYPE_EXIT:
|
|
|
|
switch (state) {
|
|
|
|
case EXIT_CONN_STATE_RESOLVING: return "waiting for dest info";
|
|
|
|
case EXIT_CONN_STATE_CONNECTING: return "connecting";
|
|
|
|
case EXIT_CONN_STATE_OPEN: return "open";
|
|
|
|
case EXIT_CONN_STATE_RESOLVEFAILED: return "resolve failed";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CONN_TYPE_AP:
|
|
|
|
switch (state) {
|
|
|
|
case AP_CONN_STATE_SOCKS_WAIT: return "waiting for dest info";
|
|
|
|
case AP_CONN_STATE_RENDDESC_WAIT: return "waiting for rendezvous desc";
|
|
|
|
case AP_CONN_STATE_CONTROLLER_WAIT: return "waiting for controller";
|
|
|
|
case AP_CONN_STATE_CIRCUIT_WAIT: return "waiting for safe circuit";
|
|
|
|
case AP_CONN_STATE_CONNECT_WAIT: return "waiting for connect";
|
|
|
|
case AP_CONN_STATE_RESOLVE_WAIT: return "waiting for resolve";
|
|
|
|
case AP_CONN_STATE_OPEN: return "open";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CONN_TYPE_DIR:
|
|
|
|
switch (state) {
|
|
|
|
case DIR_CONN_STATE_CONNECTING: return "connecting";
|
|
|
|
case DIR_CONN_STATE_CLIENT_SENDING: return "client sending";
|
|
|
|
case DIR_CONN_STATE_CLIENT_READING: return "cleint reading";
|
|
|
|
case DIR_CONN_STATE_SERVER_COMMAND_WAIT: return "waiting for command";
|
|
|
|
case DIR_CONN_STATE_SERVER_WRITING: return "writing";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CONN_TYPE_DNSWORKER:
|
|
|
|
switch (state) {
|
|
|
|
case DNSWORKER_STATE_IDLE: return "idle";
|
|
|
|
case DNSWORKER_STATE_BUSY: return "busy";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CONN_TYPE_CPUWORKER:
|
|
|
|
switch (state) {
|
|
|
|
case CPUWORKER_STATE_IDLE: return "idle";
|
|
|
|
case CPUWORKER_STATE_BUSY_ONION: return "busy with onion";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CONN_TYPE_CONTROL:
|
|
|
|
switch (state) {
|
2005-06-17 20:49:55 +02:00
|
|
|
case CONTROL_CONN_STATE_OPEN_V0: return "open (protocol v0)";
|
|
|
|
case CONTROL_CONN_STATE_OPEN_V1: return "open (protocol v1)";
|
|
|
|
case CONTROL_CONN_STATE_NEEDAUTH_V0:
|
|
|
|
return "waiting for authentication (protocol unknown)";
|
|
|
|
case CONTROL_CONN_STATE_NEEDAUTH_V1:
|
|
|
|
return "waiting for authentication (protocol v1)";
|
2005-04-07 22:25:22 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-04-07 23:07:19 +02:00
|
|
|
log_fn(LOG_WARN, "Bug: unknown connection state %d (type %d)", state, type);
|
2005-04-07 22:25:22 +02:00
|
|
|
tor_snprintf(buf, sizeof(buf),
|
|
|
|
"unknown state [%d] on unknown [%s] connection",
|
|
|
|
state, conn_type_to_string(type));
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** Allocate space for a new connection_t. This function just initializes
|
2004-05-09 18:33:04 +02:00
|
|
|
* conn; you must call connection_add() to link it into the main array.
|
|
|
|
*
|
2004-05-10 06:34:48 +02:00
|
|
|
* Set conn-\>type to <b>type</b>. Set conn-\>s and conn-\>poll_index to
|
2004-05-09 18:33:04 +02:00
|
|
|
* -1 to signify they are not yet assigned.
|
|
|
|
*
|
|
|
|
* If conn is not a listener type, allocate buffers for it. If it's
|
|
|
|
* an AP type, allocate space to store the socks_request.
|
|
|
|
*
|
|
|
|
* Assign a pseudorandom next_circ_id between 0 and 2**15.
|
|
|
|
*
|
|
|
|
* Initialize conn's timestamps to now.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
connection_t *
|
|
|
|
connection_new(int type)
|
|
|
|
{
|
2005-03-01 02:15:01 +01:00
|
|
|
static uint32_t n_connections_allocated = 0;
|
2002-06-27 00:45:49 +02:00
|
|
|
connection_t *conn;
|
2003-10-04 05:29:09 +02:00
|
|
|
time_t now = time(NULL);
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2003-11-18 09:20:19 +01:00
|
|
|
conn = tor_malloc_zero(sizeof(connection_t));
|
2004-02-25 08:31:46 +01:00
|
|
|
conn->magic = CONNECTION_MAGIC;
|
2003-10-15 20:50:16 +02:00
|
|
|
conn->s = -1; /* give it a default of 'not used' */
|
2004-05-06 13:08:04 +02:00
|
|
|
conn->poll_index = -1; /* also default to 'not used' */
|
2005-03-01 02:15:01 +01:00
|
|
|
conn->global_identifier = n_connections_allocated++;
|
2002-06-27 00:45:49 +02:00
|
|
|
|
|
|
|
conn->type = type;
|
2004-11-28 10:05:49 +01:00
|
|
|
if (!connection_is_listener(conn)) { /* listeners never use their buf */
|
2003-10-14 05:06:48 +02:00
|
|
|
conn->inbuf = buf_new();
|
|
|
|
conn->outbuf = buf_new();
|
|
|
|
}
|
2003-11-11 03:41:31 +01:00
|
|
|
if (type == CONN_TYPE_AP) {
|
2003-11-18 09:20:19 +01:00
|
|
|
conn->socks_request = tor_malloc_zero(sizeof(socks_request_t));
|
2003-11-11 03:41:31 +01:00
|
|
|
}
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2003-12-28 05:46:09 +01:00
|
|
|
conn->next_circ_id = crypto_pseudo_rand_int(1<<15);
|
|
|
|
|
2003-10-04 05:29:09 +02:00
|
|
|
conn->timestamp_created = now;
|
|
|
|
conn->timestamp_lastread = now;
|
|
|
|
conn->timestamp_lastwritten = now;
|
2002-10-13 15:17:27 +02:00
|
|
|
|
2002-06-27 00:45:49 +02:00
|
|
|
return conn;
|
|
|
|
}
|
|
|
|
|
2005-02-25 06:42:01 +01:00
|
|
|
/** Tell libevent that we don't care about <b>conn</b> any more. */
|
|
|
|
void
|
|
|
|
connection_unregister(connection_t *conn)
|
|
|
|
{
|
|
|
|
if (conn->read_event) {
|
|
|
|
if (event_del(conn->read_event))
|
2005-05-03 12:04:08 +02:00
|
|
|
log_fn(LOG_WARN, "Error removing read event for %d", conn->s);
|
2005-02-25 06:42:01 +01:00
|
|
|
tor_free(conn->read_event);
|
|
|
|
}
|
|
|
|
if (conn->write_event) {
|
|
|
|
if (event_del(conn->write_event))
|
2005-05-03 12:04:08 +02:00
|
|
|
log_fn(LOG_WARN, "Error removing write event for %d", conn->s);
|
2005-02-25 06:42:01 +01:00
|
|
|
tor_free(conn->write_event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** Deallocate memory used by <b>conn</b>. Deallocate its buffers if necessary,
|
|
|
|
* close its socket if necessary, and mark the directory as dirty if <b>conn</b>
|
2004-05-09 18:33:04 +02:00
|
|
|
* is an OR or OP connection.
|
|
|
|
*/
|
2005-01-31 02:02:20 +01:00
|
|
|
static void
|
2005-06-11 20:52:12 +02:00
|
|
|
_connection_free(connection_t *conn)
|
|
|
|
{
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn->magic == CONNECTION_MAGIC);
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (!connection_is_listener(conn)) {
|
2003-10-14 05:06:48 +02:00
|
|
|
buf_free(conn->inbuf);
|
|
|
|
buf_free(conn->outbuf);
|
|
|
|
}
|
2003-10-21 11:48:17 +02:00
|
|
|
tor_free(conn->address);
|
2004-11-29 09:34:54 +01:00
|
|
|
tor_free(conn->chosen_exit_name);
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_speaks_cells(conn)) {
|
2005-02-28 03:52:51 +01:00
|
|
|
if (conn->tls) {
|
2003-09-07 12:24:40 +02:00
|
|
|
tor_tls_free(conn->tls);
|
2005-02-28 03:52:51 +01:00
|
|
|
conn->tls = NULL;
|
|
|
|
}
|
2002-06-27 00:45:49 +02:00
|
|
|
}
|
|
|
|
|
2003-09-25 07:17:11 +02:00
|
|
|
if (conn->identity_pkey)
|
|
|
|
crypto_free_pk_env(conn->identity_pkey);
|
2003-10-21 11:48:17 +02:00
|
|
|
tor_free(conn->nickname);
|
2003-11-11 03:41:31 +01:00
|
|
|
tor_free(conn->socks_request);
|
2005-04-28 00:01:34 +02:00
|
|
|
tor_free(conn->incoming_cmd);
|
2005-04-06 02:46:57 +02:00
|
|
|
tor_free(conn->read_event); /* Probably already freed by connection_free. */
|
|
|
|
tor_free(conn->write_event); /* Probably already freed by connection_free. */
|
2005-02-25 06:42:01 +01:00
|
|
|
|
2005-02-10 00:16:31 +01:00
|
|
|
if (conn->s >= 0) {
|
|
|
|
log_fn(LOG_INFO,"closing fd %d.",conn->s);
|
|
|
|
tor_close_socket(conn->s);
|
|
|
|
}
|
|
|
|
|
2004-02-25 08:31:46 +01:00
|
|
|
memset(conn, 0xAA, sizeof(connection_t)); /* poison memory */
|
2004-09-29 08:52:36 +02:00
|
|
|
tor_free(conn);
|
2002-06-27 00:45:49 +02:00
|
|
|
}
|
|
|
|
|
2005-01-31 02:02:20 +01:00
|
|
|
/** Make sure <b>conn</b> isn't in any of the global conn lists; then free it.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
void
|
|
|
|
connection_free(connection_t *conn)
|
|
|
|
{
|
2005-01-31 02:02:20 +01:00
|
|
|
tor_assert(conn);
|
|
|
|
tor_assert(!connection_is_on_closeable_list(conn));
|
|
|
|
tor_assert(!connection_in_array(conn));
|
2005-04-06 02:46:57 +02:00
|
|
|
if (connection_speaks_cells(conn)) {
|
|
|
|
if (conn->state == OR_CONN_STATE_OPEN)
|
|
|
|
directory_set_dirty();
|
|
|
|
}
|
|
|
|
connection_unregister(conn);
|
2005-01-31 02:02:20 +01:00
|
|
|
_connection_free(conn);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Call _connection_free() on every connection in our array.
|
2004-05-10 03:32:57 +02:00
|
|
|
* This is used by cpuworkers and dnsworkers when they fork,
|
|
|
|
* so they don't keep resources held open (especially sockets).
|
2005-01-31 02:02:20 +01:00
|
|
|
*
|
|
|
|
* Don't do the checks in connection_free(), because they will
|
|
|
|
* fail.
|
2004-05-10 03:32:57 +02:00
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
void
|
|
|
|
connection_free_all(void)
|
|
|
|
{
|
2004-01-06 08:53:40 +01:00
|
|
|
int i, n;
|
|
|
|
connection_t **carray;
|
|
|
|
|
|
|
|
get_connection_array(&carray,&n);
|
2004-11-28 10:05:49 +01:00
|
|
|
for (i=0;i<n;i++)
|
2005-01-31 02:02:20 +01:00
|
|
|
_connection_free(carray[i]);
|
2004-01-06 08:53:40 +01:00
|
|
|
}
|
|
|
|
|
2004-11-15 08:50:15 +01:00
|
|
|
/** Do any cleanup needed:
|
|
|
|
* - Directory conns that failed to fetch a rendezvous descriptor
|
|
|
|
* need to inform pending rendezvous streams.
|
|
|
|
* - OR conns need to call rep_hist_note_*() to record status.
|
|
|
|
* - AP conns need to send a socks reject if necessary.
|
|
|
|
* - Exit conns need to call connection_dns_remove() if necessary.
|
|
|
|
* - AP and Exit conns need to send an end cell if they can.
|
|
|
|
* - DNS conns need to fail any resolves that are pending on them.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
void
|
|
|
|
connection_about_to_close_connection(connection_t *conn)
|
2004-05-12 22:36:44 +02:00
|
|
|
{
|
2005-01-31 02:27:49 +01:00
|
|
|
circuit_t *circ;
|
2004-05-20 01:32:20 +02:00
|
|
|
|
2004-06-02 20:32:24 +02:00
|
|
|
assert(conn->marked_for_close);
|
|
|
|
|
2005-02-23 21:35:26 +01:00
|
|
|
if (CONN_IS_EDGE(conn)) {
|
2005-02-01 01:37:16 +01:00
|
|
|
if (!conn->has_sent_end) {
|
2005-03-25 06:54:50 +01:00
|
|
|
log_fn(LOG_WARN,"Harmless bug: Edge connection (marked at %s:%d) hasn't sent end yet?", conn->marked_for_close_file, conn->marked_for_close);
|
2005-04-26 20:52:16 +02:00
|
|
|
tor_fragile_assert();
|
2005-02-01 01:37:16 +01:00
|
|
|
}
|
2004-05-20 01:32:20 +02:00
|
|
|
}
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
switch (conn->type) {
|
2004-05-12 23:12:33 +02:00
|
|
|
case CONN_TYPE_DIR:
|
2005-01-03 20:51:10 +01:00
|
|
|
if (conn->state == DIR_CONN_STATE_CONNECTING) {
|
|
|
|
/* it's a directory server and connecting failed: forget about
|
|
|
|
this router */
|
2005-01-03 21:07:07 +01:00
|
|
|
connection_dir_connect_failed(conn);
|
2005-01-03 20:51:10 +01:00
|
|
|
}
|
2004-11-28 10:05:49 +01:00
|
|
|
if (conn->purpose == DIR_PURPOSE_FETCH_RENDDESC)
|
2005-01-20 00:15:59 +01:00
|
|
|
rend_client_desc_here(conn->rend_query); /* give it a try */
|
2004-05-12 23:12:33 +02:00
|
|
|
break;
|
2004-05-20 01:32:20 +02:00
|
|
|
case CONN_TYPE_OR:
|
|
|
|
/* Remember why we're closing this connection. */
|
|
|
|
if (conn->state != OR_CONN_STATE_OPEN) {
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_or_nonopen_was_started_here(conn)) {
|
2004-07-13 20:23:40 +02:00
|
|
|
rep_hist_note_connect_failed(conn->identity_digest, time(NULL));
|
2004-11-03 19:33:07 +01:00
|
|
|
control_event_or_conn_status(conn, OR_CONN_EVENT_FAILED);
|
|
|
|
}
|
2004-11-12 06:52:19 +01:00
|
|
|
} else if (conn->hold_open_until_flushed) {
|
|
|
|
/* XXXX009 We used to have an arg that told us whether we closed the
|
|
|
|
* connection on purpose or not. Can we use hold_open_until_flushed
|
|
|
|
* instead? We only set it when we are intentionally closing a
|
|
|
|
* connection. -NM
|
|
|
|
*
|
|
|
|
* (Of course, now things we set to close which expire rather than
|
|
|
|
* flushing still get noted as dead, not disconnected. But this is an
|
|
|
|
* improvement. -NM
|
|
|
|
*/
|
2004-07-13 20:23:40 +02:00
|
|
|
rep_hist_note_disconnect(conn->identity_digest, time(NULL));
|
2004-11-12 06:52:19 +01:00
|
|
|
control_event_or_conn_status(conn, OR_CONN_EVENT_CLOSED);
|
2004-11-28 10:05:49 +01:00
|
|
|
} else if (conn->identity_digest) {
|
2004-07-13 20:23:40 +02:00
|
|
|
rep_hist_note_connection_died(conn->identity_digest, time(NULL));
|
2004-11-03 19:33:07 +01:00
|
|
|
control_event_or_conn_status(conn, OR_CONN_EVENT_CLOSED);
|
2004-05-20 01:32:20 +02:00
|
|
|
}
|
|
|
|
break;
|
2004-05-12 23:12:33 +02:00
|
|
|
case CONN_TYPE_AP:
|
2004-05-20 01:32:20 +02:00
|
|
|
if (conn->socks_request->has_finished == 0) {
|
2005-03-24 00:19:18 +01:00
|
|
|
/* since conn gets removed right after this function finishes,
|
|
|
|
* there's no point trying to send back a reply at this point. */
|
2005-03-27 06:55:13 +02:00
|
|
|
log_fn(LOG_WARN,"Bug: Closing stream (marked at %s:%d) without sending back a socks reply.",
|
|
|
|
conn->marked_for_close_file, conn->marked_for_close);
|
2004-11-03 19:33:07 +01:00
|
|
|
} else {
|
|
|
|
control_event_stream_status(conn, STREAM_EVENT_CLOSED);
|
2004-05-20 01:32:20 +02:00
|
|
|
}
|
|
|
|
break;
|
2004-05-12 23:12:33 +02:00
|
|
|
case CONN_TYPE_EXIT:
|
2004-05-21 14:25:15 +02:00
|
|
|
if (conn->state == EXIT_CONN_STATE_RESOLVING) {
|
2005-04-06 08:43:21 +02:00
|
|
|
circ = circuit_get_by_edge_conn(conn);
|
2005-01-31 02:27:49 +01:00
|
|
|
if (circ)
|
|
|
|
circuit_detach_stream(circ, conn);
|
2004-05-20 01:32:20 +02:00
|
|
|
connection_dns_remove(conn);
|
2004-05-21 14:25:15 +02:00
|
|
|
}
|
2004-05-20 01:32:20 +02:00
|
|
|
break;
|
|
|
|
case CONN_TYPE_DNSWORKER:
|
|
|
|
if (conn->state == DNSWORKER_STATE_BUSY) {
|
|
|
|
dns_cancel_pending_resolve(conn->address);
|
2004-05-12 23:12:33 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2004-05-12 22:36:44 +02:00
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** Close the underlying socket for <b>conn</b>, so we don't try to
|
|
|
|
* flush it. Must be used in conjunction with (right before)
|
|
|
|
* connection_mark_for_close().
|
2004-02-28 20:14:11 +01:00
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
void
|
|
|
|
connection_close_immediate(connection_t *conn)
|
2004-02-28 20:14:11 +01:00
|
|
|
{
|
|
|
|
assert_connection_ok(conn,0);
|
|
|
|
if (conn->s < 0) {
|
2004-12-13 01:44:39 +01:00
|
|
|
log_fn(LOG_WARN,"Bug: Attempt to close already-closed connection.");
|
2005-04-26 20:52:16 +02:00
|
|
|
tor_fragile_assert();
|
2004-02-28 20:14:11 +01:00
|
|
|
return;
|
|
|
|
}
|
2004-03-03 03:07:57 +01:00
|
|
|
if (conn->outbuf_flushlen) {
|
2005-04-08 00:03:56 +02:00
|
|
|
log_fn(LOG_INFO,"fd %d, type %s, state %s, %d bytes on outbuf.",
|
2005-04-07 22:25:22 +02:00
|
|
|
conn->s, conn_type_to_string(conn->type),
|
|
|
|
conn_state_to_string(conn->type, conn->state),
|
|
|
|
(int)conn->outbuf_flushlen);
|
2004-03-03 03:07:57 +01:00
|
|
|
}
|
2005-02-25 06:42:01 +01:00
|
|
|
|
|
|
|
connection_unregister(conn);
|
|
|
|
|
2004-04-28 23:14:56 +02:00
|
|
|
tor_close_socket(conn->s);
|
2004-02-28 20:14:11 +01:00
|
|
|
conn->s = -1;
|
2004-11-28 10:05:49 +01:00
|
|
|
if (!connection_is_listener(conn)) {
|
2004-03-03 02:58:45 +01:00
|
|
|
buf_clear(conn->outbuf);
|
|
|
|
conn->outbuf_flushlen = 0;
|
|
|
|
}
|
2004-02-28 20:14:11 +01:00
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** Mark <b>conn</b> to be closed next time we loop through
|
2004-11-15 08:50:15 +01:00
|
|
|
* conn_close_if_marked() in main.c. */
|
2005-04-03 07:22:33 +02:00
|
|
|
void
|
|
|
|
_connection_mark_for_close(connection_t *conn, int line, const char *file)
|
2004-02-27 23:00:26 +01:00
|
|
|
{
|
|
|
|
assert_connection_ok(conn,0);
|
2005-04-03 07:22:33 +02:00
|
|
|
tor_assert(line);
|
|
|
|
tor_assert(file);
|
2004-02-27 23:00:26 +01:00
|
|
|
|
|
|
|
if (conn->marked_for_close) {
|
2005-04-03 07:22:33 +02:00
|
|
|
log(LOG_WARN, "Duplicate call to connection_mark_for_close at %s:%d"
|
|
|
|
" (first at %s:%d)", file, line, conn->marked_for_close_file,
|
|
|
|
conn->marked_for_close);
|
2005-04-26 20:52:16 +02:00
|
|
|
tor_fragile_assert();
|
2005-04-03 07:22:33 +02:00
|
|
|
return;
|
2004-02-27 23:00:26 +01:00
|
|
|
}
|
|
|
|
|
2005-04-03 07:22:33 +02:00
|
|
|
conn->marked_for_close = line;
|
|
|
|
conn->marked_for_close_file = file;
|
2005-01-12 07:42:32 +01:00
|
|
|
add_connection_to_closeable_list(conn);
|
2004-03-29 22:04:09 +02:00
|
|
|
|
|
|
|
/* in case we're going to be held-open-til-flushed, reset
|
|
|
|
* the number of seconds since last successful write, so
|
|
|
|
* we get our whole 15 seconds */
|
|
|
|
conn->timestamp_lastwritten = time(NULL);
|
2004-02-27 23:00:26 +01:00
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** Find each connection that has hold_open_until_flushed set to
|
|
|
|
* 1 but hasn't written in the past 15 seconds, and set
|
|
|
|
* hold_open_until_flushed to 0. This means it will get cleaned
|
|
|
|
* up in the next loop through close_if_marked() in main.c.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
void
|
|
|
|
connection_expire_held_open(void)
|
2004-03-03 06:08:01 +01:00
|
|
|
{
|
|
|
|
connection_t **carray, *conn;
|
|
|
|
int n, i;
|
|
|
|
time_t now;
|
|
|
|
|
|
|
|
now = time(NULL);
|
|
|
|
|
|
|
|
get_connection_array(&carray, &n);
|
|
|
|
for (i = 0; i < n; ++i) {
|
|
|
|
conn = carray[i];
|
|
|
|
/* If we've been holding the connection open, but we haven't written
|
|
|
|
* for 15 seconds...
|
|
|
|
*/
|
2004-03-03 07:26:34 +01:00
|
|
|
if (conn->hold_open_until_flushed) {
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn->marked_for_close);
|
2004-03-03 07:26:34 +01:00
|
|
|
if (now - conn->timestamp_lastwritten >= 15) {
|
2005-04-07 22:25:22 +02:00
|
|
|
log_fn(LOG_NOTICE,"Giving up on marked_for_close conn that's been flushing for 15s (fd %d, type %s, state %s).",
|
|
|
|
conn->s, conn_type_to_string(conn->type),
|
|
|
|
conn_state_to_string(conn->type, conn->state));
|
2004-03-03 07:26:34 +01:00
|
|
|
conn->hold_open_until_flushed = 0;
|
|
|
|
}
|
2004-03-03 06:08:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** Bind a new non-blocking socket listening to
|
|
|
|
* <b>bindaddress</b>:<b>bindport</b>, and add this new connection
|
|
|
|
* (of type <b>type</b>) to the connection array.
|
2004-05-19 22:25:44 +02:00
|
|
|
*
|
|
|
|
* If <b>bindaddress</b> includes a port, we bind on that port; otherwise, we
|
|
|
|
* use bindport.
|
2004-05-10 03:32:57 +02:00
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
static int
|
|
|
|
connection_create_listener(const char *bindaddress, uint16_t bindport, int type)
|
|
|
|
{
|
2003-10-25 14:01:09 +02:00
|
|
|
struct sockaddr_in bindaddr; /* where to bind */
|
2005-07-15 00:56:17 +02:00
|
|
|
char *address = NULL;
|
2002-06-27 00:45:49 +02:00
|
|
|
connection_t *conn;
|
2004-10-12 17:52:09 +02:00
|
|
|
uint16_t usePort;
|
2004-10-16 23:53:30 +02:00
|
|
|
uint32_t addr;
|
2003-10-25 14:01:09 +02:00
|
|
|
int s; /* the socket we're going to make */
|
2005-03-25 00:20:06 +01:00
|
|
|
#ifndef MS_WINDOWS
|
2002-06-27 00:45:49 +02:00
|
|
|
int one=1;
|
2005-03-25 00:20:06 +01:00
|
|
|
#endif
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2003-10-25 14:01:09 +02:00
|
|
|
memset(&bindaddr,0,sizeof(struct sockaddr_in));
|
2005-07-15 00:56:17 +02:00
|
|
|
if (parse_addr_port(bindaddress, &address, &addr, &usePort)<0) {
|
2004-10-12 17:52:09 +02:00
|
|
|
log_fn(LOG_WARN, "Error parsing/resolving BindAddress %s",bindaddress);
|
2003-10-25 14:01:09 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2004-11-03 02:32:26 +01:00
|
|
|
|
2004-10-12 17:52:09 +02:00
|
|
|
if (usePort==0)
|
|
|
|
usePort = bindport;
|
2004-10-16 23:57:24 +02:00
|
|
|
bindaddr.sin_addr.s_addr = htonl(addr);
|
2004-10-12 17:52:09 +02:00
|
|
|
bindaddr.sin_family = AF_INET;
|
|
|
|
bindaddr.sin_port = htons((uint16_t) usePort);
|
2003-10-25 14:01:09 +02:00
|
|
|
|
2005-07-15 01:04:31 +02:00
|
|
|
log_fn(LOG_NOTICE, "Opening listener on %s:%d", address, usePort);
|
|
|
|
|
2002-06-27 00:45:49 +02:00
|
|
|
s = socket(PF_INET,SOCK_STREAM,IPPROTO_TCP);
|
2003-12-17 22:09:31 +01:00
|
|
|
if (s < 0) {
|
2003-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"Socket creation failed.");
|
2005-07-15 00:56:17 +02:00
|
|
|
goto err;
|
2004-12-01 04:15:59 +01:00
|
|
|
} else if (!SOCKET_IS_POLLABLE(s)) {
|
|
|
|
log_fn(LOG_WARN,"Too many connections; can't create pollable listener.");
|
|
|
|
tor_close_socket(s);
|
2005-07-15 00:56:17 +02:00
|
|
|
goto err;
|
2002-06-27 00:45:49 +02:00
|
|
|
}
|
|
|
|
|
2005-03-25 00:20:06 +01:00
|
|
|
#ifndef MS_WINDOWS
|
|
|
|
/* REUSEADDR on normal places means you can rebind to the port
|
|
|
|
* right after somebody else has let it go. But REUSEADDR on win32
|
2005-04-06 17:19:32 +02:00
|
|
|
* means you can bind to the port _even when somebody else
|
2005-03-25 00:20:06 +01:00
|
|
|
* already has it bound_. So, don't do that on Win32. */
|
2004-03-09 23:01:17 +01:00
|
|
|
setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (void*) &one, sizeof(one));
|
2005-03-25 00:20:06 +01:00
|
|
|
#endif
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (bind(s,(struct sockaddr *)&bindaddr,sizeof(bindaddr)) < 0) {
|
2004-05-19 22:25:44 +02:00
|
|
|
log_fn(LOG_WARN,"Could not bind to port %u: %s",usePort,
|
2004-05-02 22:18:21 +02:00
|
|
|
tor_socket_strerror(tor_socket_errno(s)));
|
2005-07-15 00:56:17 +02:00
|
|
|
goto err;
|
2002-06-27 00:45:49 +02:00
|
|
|
}
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (listen(s,SOMAXCONN) < 0) {
|
2004-05-19 22:25:44 +02:00
|
|
|
log_fn(LOG_WARN,"Could not listen on port %u: %s",usePort,
|
2004-05-02 22:18:21 +02:00
|
|
|
tor_socket_strerror(tor_socket_errno(s)));
|
2005-07-15 00:56:17 +02:00
|
|
|
goto err;
|
2002-06-27 00:45:49 +02:00
|
|
|
}
|
|
|
|
|
2003-08-12 05:08:41 +02:00
|
|
|
set_socket_nonblocking(s);
|
2002-06-27 00:45:49 +02:00
|
|
|
|
|
|
|
conn = connection_new(type);
|
|
|
|
conn->s = s;
|
2005-07-15 00:56:17 +02:00
|
|
|
conn->address = address;
|
|
|
|
address = NULL;
|
2005-07-11 19:20:22 +02:00
|
|
|
conn->port = usePort;
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_add(conn) < 0) { /* no space, forget it */
|
2003-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"connection_add failed. Giving up.");
|
2002-06-27 00:45:49 +02:00
|
|
|
connection_free(conn);
|
2005-07-15 00:56:17 +02:00
|
|
|
goto err;
|
2002-06-27 00:45:49 +02:00
|
|
|
}
|
|
|
|
|
2005-04-07 22:25:22 +02:00
|
|
|
log_fn(LOG_DEBUG,"%s listening on port %u.",conn_type_to_string(type), usePort);
|
2002-06-27 00:45:49 +02:00
|
|
|
|
|
|
|
conn->state = LISTENER_STATE_READY;
|
2002-07-18 08:37:58 +02:00
|
|
|
connection_start_reading(conn);
|
2002-06-27 00:45:49 +02:00
|
|
|
|
|
|
|
return 0;
|
2005-07-15 00:56:17 +02:00
|
|
|
|
|
|
|
err:
|
|
|
|
tor_free(address);
|
|
|
|
return -1;
|
2002-06-27 00:45:49 +02:00
|
|
|
}
|
|
|
|
|
2005-04-06 17:42:35 +02:00
|
|
|
/** Do basic sanity checking on a newly received socket. Return 0
|
|
|
|
* if it looks ok, else return -1. */
|
|
|
|
static int
|
|
|
|
check_sockaddr_in(struct sockaddr *sa, int len, int level)
|
|
|
|
{
|
|
|
|
int ok = 1;
|
|
|
|
struct sockaddr_in *sin=(struct sockaddr_in*)sa;
|
|
|
|
|
|
|
|
if (len != sizeof(struct sockaddr_in)) {
|
|
|
|
log_fn(level, "Length of address not as expected: %d vs %d",
|
|
|
|
len,(int)sizeof(struct sockaddr_in));
|
|
|
|
ok = 0;
|
|
|
|
}
|
|
|
|
if (sa->sa_family != AF_INET) {
|
|
|
|
log_fn(level, "Family of address not as expected: %d vs %d",
|
|
|
|
sa->sa_family, AF_INET);
|
|
|
|
ok = 0;
|
|
|
|
}
|
|
|
|
if (sin->sin_addr.s_addr == 0 || sin->sin_port == 0) {
|
|
|
|
log_fn(level, "Address for new connection has address/port equal to zero.");
|
|
|
|
ok = 0;
|
|
|
|
}
|
|
|
|
return ok ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** The listener connection <b>conn</b> told poll() it wanted to read.
|
2004-05-10 06:34:48 +02:00
|
|
|
* Call accept() on conn-\>s, and add the new connection if necessary.
|
2004-05-10 03:32:57 +02:00
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
static int
|
|
|
|
connection_handle_listener_read(connection_t *conn, int new_type)
|
|
|
|
{
|
2002-06-27 00:45:49 +02:00
|
|
|
int news; /* the new socket */
|
|
|
|
connection_t *newconn;
|
2004-10-14 04:47:09 +02:00
|
|
|
/* information about the remote peer when connecting to other routers */
|
|
|
|
struct sockaddr_in remote;
|
2005-04-06 17:42:35 +02:00
|
|
|
char addrbuf[256];
|
2005-05-07 07:55:06 +02:00
|
|
|
/* length of the remote address. Must be whatever accept() needs. */
|
|
|
|
socklen_t remotelen = 256;
|
2005-02-22 09:18:36 +01:00
|
|
|
char tmpbuf[INET_NTOA_BUF_LEN];
|
2005-04-08 05:26:44 +02:00
|
|
|
tor_assert((size_t)remotelen >= sizeof(struct sockaddr_in));
|
2005-04-06 17:42:35 +02:00
|
|
|
memset(addrbuf, 0, sizeof(addrbuf));
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2005-04-06 18:16:31 +02:00
|
|
|
news = accept(conn->s,(struct sockaddr *)&addrbuf,&remotelen);
|
2004-12-01 04:15:59 +01:00
|
|
|
if (!SOCKET_IS_POLLABLE(news)) {
|
2004-12-01 05:13:15 +01:00
|
|
|
/* accept() error, or too many conns to poll */
|
2004-12-01 04:15:59 +01:00
|
|
|
int e;
|
|
|
|
if (news>=0) {
|
|
|
|
/* Too many conns to poll. */
|
|
|
|
log_fn(LOG_WARN,"Too many connections; couldn't accept connection.");
|
|
|
|
tor_close_socket(news);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
e = tor_socket_errno(conn->s);
|
2004-10-24 02:55:18 +02:00
|
|
|
if (ERRNO_IS_ACCEPT_EAGAIN(e)) {
|
2002-06-27 00:45:49 +02:00
|
|
|
return 0; /* he hung up before we could accept(). that's fine. */
|
2004-10-24 02:55:18 +02:00
|
|
|
} else if (ERRNO_IS_ACCEPT_RESOURCE_LIMIT(e)) {
|
2004-12-13 01:44:39 +01:00
|
|
|
log_fn(LOG_NOTICE,"accept failed: %s. Dropping incoming connection.",
|
2004-10-24 02:55:18 +02:00
|
|
|
tor_socket_strerror(e));
|
|
|
|
return 0;
|
2003-08-14 19:13:52 +02:00
|
|
|
}
|
2002-06-27 00:45:49 +02:00
|
|
|
/* else there was a real error. */
|
2004-11-09 21:04:00 +01:00
|
|
|
log_fn(LOG_WARN,"accept() failed: %s. Closing listener.",
|
2004-10-24 02:55:18 +02:00
|
|
|
tor_socket_strerror(e));
|
2004-05-12 23:12:33 +02:00
|
|
|
connection_mark_for_close(conn);
|
2002-06-27 00:45:49 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2002-09-03 20:36:40 +02:00
|
|
|
log(LOG_INFO,"Connection accepted on socket %d (child of fd %d).",news, conn->s);
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2003-08-12 05:08:41 +02:00
|
|
|
set_socket_nonblocking(news);
|
2002-07-16 04:12:58 +02:00
|
|
|
|
2005-04-06 17:42:35 +02:00
|
|
|
if (check_sockaddr_in((struct sockaddr*)addrbuf, remotelen, LOG_INFO)<0) {
|
|
|
|
log_fn(LOG_INFO, "accept() returned a strange address; trying getsockname().");
|
|
|
|
remotelen=256;
|
|
|
|
memset(addrbuf, 0, sizeof(addrbuf));
|
|
|
|
if (getsockname(news, (struct sockaddr*)addrbuf, &remotelen)<0) {
|
|
|
|
log_fn(LOG_WARN, "getsockname() failed.");
|
|
|
|
} else {
|
|
|
|
if (check_sockaddr_in((struct sockaddr*)addrbuf, remotelen, LOG_WARN)<0) {
|
|
|
|
log_fn(LOG_WARN,"Something's wrong with this conn. Closing it.");
|
|
|
|
tor_close_socket(news);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
memcpy(&remote, addrbuf, sizeof(struct sockaddr_in));
|
|
|
|
|
2004-08-06 11:56:36 +02:00
|
|
|
/* process entrance policies here, before we even create the connection */
|
2004-11-28 10:05:49 +01:00
|
|
|
if (new_type == CONN_TYPE_AP) {
|
2004-08-06 11:56:36 +02:00
|
|
|
/* check sockspolicy to see if we should accept it */
|
2004-11-28 10:05:49 +01:00
|
|
|
if (socks_policy_permits_address(ntohl(remote.sin_addr.s_addr)) == 0) {
|
2005-02-22 09:18:36 +01:00
|
|
|
tor_inet_ntoa(&remote.sin_addr, tmpbuf, sizeof(tmpbuf));
|
2004-12-13 01:44:39 +01:00
|
|
|
log_fn(LOG_NOTICE,"Denying socks connection from untrusted address %s.",
|
2005-02-22 09:18:36 +01:00
|
|
|
tmpbuf);
|
2004-08-06 11:56:36 +02:00
|
|
|
tor_close_socket(news);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2004-11-28 10:05:49 +01:00
|
|
|
if (new_type == CONN_TYPE_DIR) {
|
2004-10-25 08:16:26 +02:00
|
|
|
/* check dirpolicy to see if we should accept it */
|
2004-11-28 10:05:49 +01:00
|
|
|
if (dir_policy_permits_address(ntohl(remote.sin_addr.s_addr)) == 0) {
|
2005-02-22 09:18:36 +01:00
|
|
|
tor_inet_ntoa(&remote.sin_addr, tmpbuf, sizeof(tmpbuf));
|
2004-12-13 01:44:39 +01:00
|
|
|
log_fn(LOG_NOTICE,"Denying dir connection from address %s.",
|
2005-02-22 09:18:36 +01:00
|
|
|
tmpbuf);
|
2004-10-25 08:16:26 +02:00
|
|
|
tor_close_socket(news);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2004-08-06 11:56:36 +02:00
|
|
|
|
2002-06-27 00:45:49 +02:00
|
|
|
newconn = connection_new(new_type);
|
|
|
|
newconn->s = news;
|
|
|
|
|
2005-02-22 09:18:36 +01:00
|
|
|
/* remember the remote address */
|
|
|
|
newconn->address = tor_malloc(INET_NTOA_BUF_LEN);
|
|
|
|
tor_inet_ntoa(&remote.sin_addr, newconn->address, INET_NTOA_BUF_LEN);
|
2002-10-13 15:17:27 +02:00
|
|
|
newconn->addr = ntohl(remote.sin_addr.s_addr);
|
|
|
|
newconn->port = ntohs(remote.sin_port);
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_add(newconn) < 0) { /* no space, forget it */
|
2002-06-27 00:45:49 +02:00
|
|
|
connection_free(newconn);
|
2002-09-03 20:36:40 +02:00
|
|
|
return 0; /* no need to tear down the parent */
|
2002-06-27 00:45:49 +02:00
|
|
|
}
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_init_accepted_conn(newconn) < 0) {
|
2004-05-12 23:12:33 +02:00
|
|
|
connection_mark_for_close(newconn);
|
2003-09-08 12:59:00 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** Initialize states for newly accepted connection <b>conn</b>.
|
|
|
|
* If conn is an OR, start the tls handshake.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
static int
|
|
|
|
connection_init_accepted_conn(connection_t *conn)
|
|
|
|
{
|
2003-09-08 12:59:00 +02:00
|
|
|
connection_start_reading(conn);
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
switch (conn->type) {
|
2003-09-08 12:59:00 +02:00
|
|
|
case CONN_TYPE_OR:
|
2003-09-26 12:03:50 +02:00
|
|
|
return connection_tls_start_handshake(conn, 1);
|
2003-09-08 12:59:00 +02:00
|
|
|
case CONN_TYPE_AP:
|
|
|
|
conn->state = AP_CONN_STATE_SOCKS_WAIT;
|
|
|
|
break;
|
|
|
|
case CONN_TYPE_DIR:
|
2004-03-31 00:57:49 +02:00
|
|
|
conn->purpose = DIR_PURPOSE_SERVER;
|
2003-09-17 22:09:06 +02:00
|
|
|
conn->state = DIR_CONN_STATE_SERVER_COMMAND_WAIT;
|
2003-09-08 12:59:00 +02:00
|
|
|
break;
|
2004-11-03 02:32:26 +01:00
|
|
|
case CONN_TYPE_CONTROL:
|
2005-06-17 20:49:55 +02:00
|
|
|
conn->state = CONTROL_CONN_STATE_NEEDAUTH_V0;
|
2004-11-03 02:32:26 +01:00
|
|
|
break;
|
2003-09-08 12:59:00 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** Take conn, make a nonblocking socket; try to connect to
|
2003-09-16 03:58:46 +02:00
|
|
|
* addr:port (they arrive in *host order*). If fail, return -1. Else
|
2005-05-17 19:01:36 +02:00
|
|
|
* assign s to conn-\>s: if connected return 1, if EAGAIN return 0.
|
2004-05-10 03:32:57 +02:00
|
|
|
*
|
|
|
|
* address is used to make the logs useful.
|
|
|
|
*
|
2004-05-10 06:34:48 +02:00
|
|
|
* On success, add conn to the list of polled connections.
|
2003-09-16 03:58:46 +02:00
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
int
|
|
|
|
connection_connect(connection_t *conn, char *address,
|
|
|
|
uint32_t addr, uint16_t port)
|
|
|
|
{
|
2003-09-16 03:58:46 +02:00
|
|
|
int s;
|
|
|
|
struct sockaddr_in dest_addr;
|
2004-11-06 06:18:11 +01:00
|
|
|
or_options_t *options = get_options();
|
2003-09-16 03:58:46 +02:00
|
|
|
|
2004-12-01 04:15:59 +01:00
|
|
|
s = socket(PF_INET,SOCK_STREAM,IPPROTO_TCP);
|
2003-09-16 03:58:46 +02:00
|
|
|
if (s < 0) {
|
2004-08-15 07:28:09 +02:00
|
|
|
log_fn(LOG_WARN,"Error creating network socket: %s",
|
|
|
|
tor_socket_strerror(tor_socket_errno(-1)));
|
2003-09-16 03:58:46 +02:00
|
|
|
return -1;
|
2004-12-01 04:15:59 +01:00
|
|
|
} else if (!SOCKET_IS_POLLABLE(s)) {
|
|
|
|
log_fn(LOG_WARN,
|
2005-05-03 12:04:08 +02:00
|
|
|
"Too many connections; can't create pollable connection to %s",
|
|
|
|
safe_str(address));
|
2004-12-01 04:15:59 +01:00
|
|
|
tor_close_socket(s);
|
|
|
|
return -1;
|
2003-09-16 03:58:46 +02:00
|
|
|
}
|
2004-08-16 13:43:18 +02:00
|
|
|
|
2004-11-06 06:18:11 +01:00
|
|
|
if (options->OutboundBindAddress) {
|
2004-08-16 13:43:18 +02:00
|
|
|
struct sockaddr_in ext_addr;
|
|
|
|
|
|
|
|
memset(&ext_addr, 0, sizeof(ext_addr));
|
|
|
|
ext_addr.sin_family = AF_INET;
|
|
|
|
ext_addr.sin_port = 0;
|
2004-11-06 06:18:11 +01:00
|
|
|
if (!tor_inet_aton(options->OutboundBindAddress, &ext_addr.sin_addr)) {
|
2004-08-16 13:43:18 +02:00
|
|
|
log_fn(LOG_WARN,"Outbound bind address '%s' didn't parse. Ignoring.",
|
2004-11-06 06:18:11 +01:00
|
|
|
options->OutboundBindAddress);
|
2004-08-16 13:43:18 +02:00
|
|
|
} else {
|
2004-11-28 10:05:49 +01:00
|
|
|
if (bind(s, (struct sockaddr*)&ext_addr, sizeof(ext_addr)) < 0) {
|
2004-08-16 13:43:18 +02:00
|
|
|
log_fn(LOG_WARN,"Error binding network socket: %s",
|
|
|
|
tor_socket_strerror(tor_socket_errno(s)));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-09-16 03:58:46 +02:00
|
|
|
set_socket_nonblocking(s);
|
|
|
|
|
2003-11-18 09:20:19 +01:00
|
|
|
memset(&dest_addr,0,sizeof(dest_addr));
|
2003-09-16 03:58:46 +02:00
|
|
|
dest_addr.sin_family = AF_INET;
|
|
|
|
dest_addr.sin_port = htons(port);
|
|
|
|
dest_addr.sin_addr.s_addr = htonl(addr);
|
|
|
|
|
2005-05-03 12:04:08 +02:00
|
|
|
log_fn(LOG_DEBUG,"Connecting to %s:%u.",safe_str(address),port);
|
2003-09-16 03:58:46 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connect(s,(struct sockaddr *)&dest_addr,sizeof(dest_addr)) < 0) {
|
2004-11-28 06:48:02 +01:00
|
|
|
int e = tor_socket_errno(s);
|
2004-11-28 10:05:49 +01:00
|
|
|
if (!ERRNO_IS_CONN_EINPROGRESS(e)) {
|
2003-09-16 03:58:46 +02:00
|
|
|
/* yuck. kill it. */
|
2005-05-03 12:04:08 +02:00
|
|
|
log_fn(LOG_INFO,"Connect() to %s:%u failed: %s",safe_str(address),port,
|
2004-11-28 06:48:02 +01:00
|
|
|
tor_socket_strerror(e));
|
2004-04-28 23:14:56 +02:00
|
|
|
tor_close_socket(s);
|
2003-09-16 03:58:46 +02:00
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
/* it's in progress. set state appropriately and return. */
|
|
|
|
conn->s = s;
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_add(conn) < 0) /* no space, forget it */
|
2004-05-05 03:26:57 +02:00
|
|
|
return -1;
|
2003-09-16 03:58:46 +02:00
|
|
|
log_fn(LOG_DEBUG,"connect in progress, socket %d.",s);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* it succeeded. we're connected. */
|
2005-05-03 12:04:08 +02:00
|
|
|
log_fn(LOG_INFO,"Connection to %s:%u established.",safe_str(address),port);
|
2003-09-16 03:58:46 +02:00
|
|
|
conn->s = s;
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_add(conn) < 0) /* no space, forget it */
|
2004-05-05 03:26:57 +02:00
|
|
|
return -1;
|
2003-09-16 03:58:46 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-11-09 21:04:00 +01:00
|
|
|
/**
|
2004-10-24 03:50:33 +02:00
|
|
|
* Launch any configured listener connections of type <b>type</b>. (A
|
|
|
|
* listener is configured if <b>port_option</b> is non-zero. If any
|
|
|
|
* BindAddress configuration options are given in <b>cfg</b>, create a
|
|
|
|
* connection binding to each one. Otherwise, create a single
|
|
|
|
* connection binding to the address <b>default_addr</b>.)
|
|
|
|
*
|
|
|
|
* If <b>force</b> is true, close and re-open all listener connections.
|
2004-11-09 21:04:00 +01:00
|
|
|
* Otherwise, only relaunch the listeners of this type if the number of
|
2005-07-11 19:20:22 +02:00
|
|
|
* existing connections is not as configured (e.g., because one died),
|
|
|
|
* or if the existing connections do not match those configured.
|
2004-10-24 03:50:33 +02:00
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
static int
|
|
|
|
retry_listeners(int type, struct config_line_t *cfg,
|
|
|
|
int port_option, const char *default_addr, int force)
|
2004-05-20 04:42:50 +02:00
|
|
|
{
|
2005-07-11 19:20:22 +02:00
|
|
|
struct smartlist_t *launch = smartlist_create();
|
|
|
|
int free_launch_elts = 1;
|
|
|
|
struct config_line_t *c;
|
|
|
|
int n_conn, i;
|
|
|
|
connection_t *conn;
|
|
|
|
connection_t **carray;
|
|
|
|
struct config_line_t *line;
|
2004-10-24 03:22:40 +02:00
|
|
|
|
2005-07-11 19:20:22 +02:00
|
|
|
if (cfg && port_option) {
|
|
|
|
for (c = cfg; c; c = c->next) {
|
|
|
|
smartlist_add(launch, c);
|
2004-10-24 03:22:40 +02:00
|
|
|
}
|
2005-07-11 19:20:22 +02:00
|
|
|
free_launch_elts = 0;
|
|
|
|
} else if (port_option) {
|
|
|
|
line = tor_malloc_zero(sizeof(struct config_line_t));
|
|
|
|
line->key = tor_strdup("");
|
|
|
|
line->value = tor_strdup(default_addr);
|
|
|
|
smartlist_add(launch, line);
|
2004-10-24 03:22:40 +02:00
|
|
|
}
|
2004-11-03 02:32:26 +01:00
|
|
|
|
2005-07-11 19:20:22 +02:00
|
|
|
get_connection_array(&carray,&n_conn);
|
|
|
|
for (i=0; i < n_conn; ++i) {
|
|
|
|
conn = carray[i];
|
|
|
|
if (conn->type != type || conn->marked_for_close)
|
|
|
|
continue;
|
|
|
|
if (force) {
|
|
|
|
/* It's a listener, and we're relaunching all listeners of this
|
|
|
|
* type. Close this one. */
|
|
|
|
log_fn(LOG_NOTICE, "Closing listener on %s:%d", conn->address, conn->port);
|
|
|
|
connection_close_immediate(conn);
|
|
|
|
connection_mark_for_close(conn);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* Okay, so this is a listener. Is it configured? */
|
|
|
|
line = NULL;
|
|
|
|
SMARTLIST_FOREACH(launch, struct config_line_t *, wanted,
|
|
|
|
{
|
|
|
|
char *addr;
|
|
|
|
uint16_t port;
|
|
|
|
if (! parse_addr_port(wanted->value, &addr, NULL, &port)) {
|
|
|
|
if (! port)
|
|
|
|
port = port_option;
|
|
|
|
if (port == conn->port && !strcasecmp(addr, conn->address)) {
|
|
|
|
line = wanted;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (! line) {
|
|
|
|
/* This one isn't configured. Close it. */
|
|
|
|
log_fn(LOG_NOTICE, "Closing listener on %s:%d", conn->address, conn->port);
|
|
|
|
connection_close_immediate(conn);
|
|
|
|
connection_mark_for_close(conn);
|
2004-05-20 04:42:50 +02:00
|
|
|
} else {
|
2005-07-11 19:20:22 +02:00
|
|
|
/* It's configured; we don't need to launch it. */
|
|
|
|
log_fn(LOG_INFO, "Already have listener on %s:%d",conn->address,conn->port);
|
|
|
|
smartlist_remove(launch, line);
|
2004-05-20 04:42:50 +02:00
|
|
|
}
|
2003-12-14 07:03:46 +01:00
|
|
|
}
|
2005-07-11 19:20:22 +02:00
|
|
|
|
|
|
|
/* Now open all the listeners that are configured but not opened. */
|
|
|
|
i = 0;
|
|
|
|
SMARTLIST_FOREACH(launch, struct config_line_t *, cfg,
|
|
|
|
{
|
|
|
|
if (connection_create_listener(cfg->value, (uint16_t) port_option,
|
|
|
|
type)<0)
|
|
|
|
i = -1;
|
|
|
|
});
|
|
|
|
|
|
|
|
if (free_launch_elts) {
|
|
|
|
SMARTLIST_FOREACH(launch, struct config_line_t *, cfg,
|
|
|
|
config_free_lines(cfg));
|
|
|
|
}
|
|
|
|
smartlist_free(launch);
|
|
|
|
|
|
|
|
return i;
|
2003-12-14 07:03:46 +01:00
|
|
|
}
|
|
|
|
|
2004-10-24 03:22:40 +02:00
|
|
|
/** (Re)launch listeners for each port you should have open. If
|
|
|
|
* <b>force</b> is true, close and relaunch all listeners. If <b>force</b>
|
|
|
|
* is false, then only relaunch listeners when we have the wrong number of
|
|
|
|
* connections for a given type.
|
2004-05-10 03:32:57 +02:00
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
int
|
|
|
|
retry_all_listeners(int force)
|
|
|
|
{
|
2004-11-06 06:18:11 +01:00
|
|
|
or_options_t *options = get_options();
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2005-06-09 10:54:42 +02:00
|
|
|
if (server_mode(options) &&
|
|
|
|
retry_listeners(CONN_TYPE_OR_LISTENER, options->ORBindAddress,
|
2004-11-06 06:18:11 +01:00
|
|
|
options->ORPort, "0.0.0.0", force)<0)
|
2004-05-20 04:42:50 +02:00
|
|
|
return -1;
|
2004-11-06 06:18:11 +01:00
|
|
|
if (retry_listeners(CONN_TYPE_DIR_LISTENER, options->DirBindAddress,
|
|
|
|
options->DirPort, "0.0.0.0", force)<0)
|
2004-05-20 04:42:50 +02:00
|
|
|
return -1;
|
2004-11-06 06:18:11 +01:00
|
|
|
if (retry_listeners(CONN_TYPE_AP_LISTENER, options->SocksBindAddress,
|
|
|
|
options->SocksPort, "127.0.0.1", force)<0)
|
2004-05-20 04:42:50 +02:00
|
|
|
return -1;
|
2004-11-04 07:41:49 +01:00
|
|
|
if (retry_listeners(CONN_TYPE_CONTROL_LISTENER, NULL,
|
2004-11-06 06:18:11 +01:00
|
|
|
options->ControlPort, "127.0.0.1", force)<0)
|
2004-11-04 07:41:49 +01:00
|
|
|
return -1;
|
2002-10-02 03:03:00 +02:00
|
|
|
|
2002-06-27 00:45:49 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-09-08 08:52:33 +02:00
|
|
|
extern int global_read_bucket, global_write_bucket;
|
2004-03-14 17:00:52 +01:00
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** How many bytes at most can we read onto this connection? */
|
2005-06-11 20:52:12 +02:00
|
|
|
static int
|
|
|
|
connection_bucket_read_limit(connection_t *conn)
|
|
|
|
{
|
2004-03-14 17:00:52 +01:00
|
|
|
int at_most;
|
|
|
|
|
2004-09-08 08:52:33 +02:00
|
|
|
/* do a rudimentary round-robin so one circuit can't hog a connection */
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_speaks_cells(conn)) {
|
2004-09-08 08:52:33 +02:00
|
|
|
at_most = 32*(CELL_NETWORK_SIZE);
|
2004-03-14 17:00:52 +01:00
|
|
|
} else {
|
2004-09-08 08:52:33 +02:00
|
|
|
at_most = 32*(RELAY_PAYLOAD_SIZE);
|
2004-03-14 17:00:52 +01:00
|
|
|
}
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (at_most > global_read_bucket)
|
2004-09-08 08:52:33 +02:00
|
|
|
at_most = global_read_bucket;
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_speaks_cells(conn) && conn->state == OR_CONN_STATE_OPEN)
|
|
|
|
if (at_most > conn->receiver_bucket)
|
2004-03-14 17:00:52 +01:00
|
|
|
at_most = conn->receiver_bucket;
|
|
|
|
|
2005-01-12 13:19:00 +01:00
|
|
|
if (at_most < 0)
|
|
|
|
return 0;
|
2004-03-14 17:00:52 +01:00
|
|
|
return at_most;
|
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** We just read num_read onto conn. Decrement buckets appropriately. */
|
2005-06-11 20:52:12 +02:00
|
|
|
static void
|
|
|
|
connection_read_bucket_decrement(connection_t *conn, int num_read)
|
|
|
|
{
|
2005-01-12 11:00:38 +01:00
|
|
|
global_read_bucket -= num_read; //tor_assert(global_read_bucket >= 0);
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_speaks_cells(conn) && conn->state == OR_CONN_STATE_OPEN) {
|
2005-01-12 11:00:38 +01:00
|
|
|
conn->receiver_bucket -= num_read; //tor_assert(conn->receiver_bucket >= 0);
|
2004-03-14 17:00:52 +01:00
|
|
|
}
|
2004-11-07 02:33:06 +01:00
|
|
|
}
|
|
|
|
|
2005-06-11 20:52:12 +02:00
|
|
|
/** DOCDOC */
|
|
|
|
static void
|
|
|
|
connection_consider_empty_buckets(connection_t *conn)
|
|
|
|
{
|
2005-01-12 11:00:38 +01:00
|
|
|
if (global_read_bucket <= 0) {
|
2005-07-13 07:14:42 +02:00
|
|
|
LOG_FN_CONN(conn, (LOG_DEBUG,"global bucket exhausted. Pausing."));
|
2004-03-14 17:00:52 +01:00
|
|
|
conn->wants_to_read = 1;
|
|
|
|
connection_stop_reading(conn);
|
|
|
|
return;
|
|
|
|
}
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_speaks_cells(conn) &&
|
2004-11-28 12:39:53 +01:00
|
|
|
conn->state == OR_CONN_STATE_OPEN &&
|
2005-01-12 11:00:38 +01:00
|
|
|
conn->receiver_bucket <= 0) {
|
2005-07-13 07:14:42 +02:00
|
|
|
LOG_FN_CONN(conn, (LOG_DEBUG,"receiver bucket exhausted. Pausing."));
|
2004-11-28 12:39:53 +01:00
|
|
|
conn->wants_to_read = 1;
|
|
|
|
connection_stop_reading(conn);
|
2004-03-14 17:00:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-20 08:33:55 +01:00
|
|
|
/** Initialize the global read bucket to options->BandwidthBurst,
|
2004-05-10 03:32:57 +02:00
|
|
|
* and current_time to the current time. */
|
2005-06-11 20:52:12 +02:00
|
|
|
void
|
|
|
|
connection_bucket_init(void)
|
|
|
|
{
|
2004-11-06 06:18:11 +01:00
|
|
|
or_options_t *options = get_options();
|
2004-11-22 23:24:10 +01:00
|
|
|
global_read_bucket = (int)options->BandwidthBurst; /* start it at max traffic */
|
|
|
|
global_write_bucket = (int)options->BandwidthBurst; /* start it at max traffic */
|
2004-03-14 17:00:52 +01:00
|
|
|
}
|
|
|
|
|
2004-11-03 17:38:04 +01:00
|
|
|
/** A second has rolled over; increment buckets appropriately. */
|
2005-06-11 20:52:12 +02:00
|
|
|
void
|
|
|
|
connection_bucket_refill(struct timeval *now)
|
|
|
|
{
|
2004-03-14 17:00:52 +01:00
|
|
|
int i, n;
|
|
|
|
connection_t *conn;
|
|
|
|
connection_t **carray;
|
2004-11-06 06:18:11 +01:00
|
|
|
or_options_t *options = get_options();
|
2004-03-14 17:00:52 +01:00
|
|
|
|
2004-09-08 08:52:33 +02:00
|
|
|
/* refill the global buckets */
|
2005-01-12 11:00:38 +01:00
|
|
|
if (global_read_bucket < (int)options->BandwidthBurst) {
|
2004-11-22 23:24:10 +01:00
|
|
|
global_read_bucket += (int)options->BandwidthRate;
|
2004-03-14 17:00:52 +01:00
|
|
|
log_fn(LOG_DEBUG,"global_read_bucket now %d.", global_read_bucket);
|
|
|
|
}
|
2005-01-12 11:00:38 +01:00
|
|
|
if (global_write_bucket < (int)options->BandwidthBurst) {
|
2004-11-22 23:24:10 +01:00
|
|
|
global_write_bucket += (int)options->BandwidthRate;
|
2004-09-08 08:52:33 +02:00
|
|
|
log_fn(LOG_DEBUG,"global_write_bucket now %d.", global_write_bucket);
|
|
|
|
}
|
2004-03-14 17:00:52 +01:00
|
|
|
|
|
|
|
/* refill the per-connection buckets */
|
|
|
|
get_connection_array(&carray,&n);
|
2004-11-28 10:05:49 +01:00
|
|
|
for (i=0;i<n;i++) {
|
2004-03-14 17:00:52 +01:00
|
|
|
conn = carray[i];
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_receiver_bucket_should_increase(conn)) {
|
2005-02-03 23:58:22 +01:00
|
|
|
conn->receiver_bucket = conn->bandwidth;
|
2004-03-14 17:00:52 +01:00
|
|
|
//log_fn(LOG_DEBUG,"Receiver bucket %d now %d.", i, conn->receiver_bucket);
|
|
|
|
}
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (conn->wants_to_read == 1 /* it's marked to turn reading back on now */
|
2004-11-28 12:39:53 +01:00
|
|
|
&& global_read_bucket > 0 /* and we're allowed to read */
|
|
|
|
&& global_write_bucket > 0 /* and we're allowed to write (XXXX,
|
|
|
|
* not the best place to check this.) */
|
|
|
|
&& (!connection_speaks_cells(conn) ||
|
|
|
|
conn->state != OR_CONN_STATE_OPEN ||
|
|
|
|
conn->receiver_bucket > 0)) {
|
2004-03-14 17:00:52 +01:00
|
|
|
/* and either a non-cell conn or a cell conn with non-empty bucket */
|
2005-07-13 07:14:42 +02:00
|
|
|
LOG_FN_CONN(conn, (LOG_DEBUG,"waking up conn (fd %d)",conn->s));
|
2004-03-14 17:00:52 +01:00
|
|
|
conn->wants_to_read = 0;
|
|
|
|
connection_start_reading(conn);
|
2004-11-28 10:05:49 +01:00
|
|
|
if (conn->wants_to_write == 1) {
|
2004-03-14 17:00:52 +01:00
|
|
|
conn->wants_to_write = 0;
|
|
|
|
connection_start_writing(conn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** Is the receiver bucket for connection <b>conn</b> low enough that we
|
|
|
|
* should add another pile of tokens to it?
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
static int
|
|
|
|
connection_receiver_bucket_should_increase(connection_t *conn)
|
|
|
|
{
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn);
|
2004-03-14 17:00:52 +01:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (!connection_speaks_cells(conn))
|
2004-03-14 17:00:52 +01:00
|
|
|
return 0; /* edge connections don't use receiver_buckets */
|
2004-11-28 10:05:49 +01:00
|
|
|
if (conn->state != OR_CONN_STATE_OPEN)
|
2004-03-14 17:00:52 +01:00
|
|
|
return 0; /* only open connections play the rate limiting game */
|
|
|
|
|
2005-02-03 23:58:22 +01:00
|
|
|
if (conn->receiver_bucket >= conn->bandwidth)
|
2004-03-14 17:00:52 +01:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2005-05-17 19:01:36 +02:00
|
|
|
/** Read bytes from conn-\>s and process them.
|
2004-05-10 03:32:57 +02:00
|
|
|
*
|
|
|
|
* This function gets called from conn_read() in main.c, either
|
|
|
|
* when poll() has declared that conn wants to read, or (for OR conns)
|
|
|
|
* when there are pending TLS bytes.
|
|
|
|
*
|
|
|
|
* It calls connection_read_to_buf() to bring in any new bytes,
|
|
|
|
* and then calls connection_process_inbuf() to process them.
|
|
|
|
*
|
|
|
|
* Mark the connection and return -1 if you want to close it, else
|
|
|
|
* return 0.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
int
|
|
|
|
connection_handle_read(connection_t *conn)
|
|
|
|
{
|
2004-11-21 08:43:12 +01:00
|
|
|
int max_to_read=-1, try_to_read;
|
2003-09-05 08:04:03 +02:00
|
|
|
|
2005-06-08 06:55:06 +02:00
|
|
|
if (conn->marked_for_close)
|
|
|
|
return 0; /* do nothing */
|
|
|
|
|
2003-10-04 05:29:09 +02:00
|
|
|
conn->timestamp_lastread = time(NULL);
|
2003-09-05 08:04:03 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
switch (conn->type) {
|
2003-09-05 08:04:03 +02:00
|
|
|
case CONN_TYPE_OR_LISTENER:
|
2003-09-08 12:59:00 +02:00
|
|
|
return connection_handle_listener_read(conn, CONN_TYPE_OR);
|
2003-09-05 08:04:03 +02:00
|
|
|
case CONN_TYPE_AP_LISTENER:
|
2003-09-08 12:59:00 +02:00
|
|
|
return connection_handle_listener_read(conn, CONN_TYPE_AP);
|
2003-09-05 08:04:03 +02:00
|
|
|
case CONN_TYPE_DIR_LISTENER:
|
2003-09-08 12:59:00 +02:00
|
|
|
return connection_handle_listener_read(conn, CONN_TYPE_DIR);
|
2004-11-03 02:32:26 +01:00
|
|
|
case CONN_TYPE_CONTROL_LISTENER:
|
|
|
|
return connection_handle_listener_read(conn, CONN_TYPE_CONTROL);
|
2003-09-08 12:59:00 +02:00
|
|
|
}
|
2003-09-05 08:04:03 +02:00
|
|
|
|
2004-11-21 08:43:12 +01:00
|
|
|
loop_again:
|
|
|
|
try_to_read = max_to_read;
|
|
|
|
tor_assert(!conn->marked_for_close);
|
|
|
|
if (connection_read_to_buf(conn, &max_to_read) < 0) {
|
2004-07-12 22:39:40 +02:00
|
|
|
/* There's a read error; kill the connection.*/
|
|
|
|
connection_close_immediate(conn); /* Don't flush; connection is dead. */
|
2005-02-23 21:35:26 +01:00
|
|
|
if (CONN_IS_EDGE(conn)) {
|
2005-03-01 23:42:31 +01:00
|
|
|
connection_edge_end_errno(conn, conn->cpath_layer);
|
2005-05-21 02:15:23 +02:00
|
|
|
if (conn->socks_request) /* broken, so don't send a socks reply back */
|
|
|
|
conn->socks_request->has_finished = 1;
|
2004-10-14 11:28:31 +02:00
|
|
|
}
|
2004-07-12 22:39:40 +02:00
|
|
|
connection_mark_for_close(conn);
|
2003-09-08 12:59:00 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2004-11-21 08:43:12 +01:00
|
|
|
if (CONN_IS_EDGE(conn) &&
|
|
|
|
try_to_read != max_to_read) {
|
|
|
|
/* instruct it not to try to package partial cells. */
|
|
|
|
if (connection_process_inbuf(conn, 0) < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
2004-11-24 07:41:58 +01:00
|
|
|
if (!conn->marked_for_close &&
|
|
|
|
connection_is_reading(conn) &&
|
2005-01-12 11:00:38 +01:00
|
|
|
!conn->inbuf_reached_eof &&
|
|
|
|
max_to_read > 0)
|
2004-11-21 08:43:12 +01:00
|
|
|
goto loop_again; /* try reading again, in case more is here now */
|
|
|
|
}
|
|
|
|
/* one last try, packaging partial cells and all. */
|
2004-11-24 07:41:58 +01:00
|
|
|
if (!conn->marked_for_close &&
|
|
|
|
connection_process_inbuf(conn, 1) < 0) {
|
2003-09-08 12:59:00 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2004-11-24 07:41:58 +01:00
|
|
|
if (!conn->marked_for_close &&
|
|
|
|
conn->inbuf_reached_eof &&
|
|
|
|
connection_reached_eof(conn) < 0) {
|
2004-11-21 11:14:57 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2003-09-07 12:24:40 +02:00
|
|
|
return 0;
|
2003-09-05 08:04:03 +02:00
|
|
|
}
|
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** Pull in new bytes from conn-\>s onto conn-\>inbuf, either
|
2004-05-10 03:32:57 +02:00
|
|
|
* directly or via TLS. Reduce the token buckets by the number of
|
|
|
|
* bytes read.
|
|
|
|
*
|
2004-11-21 08:43:12 +01:00
|
|
|
* If *max_to_read is -1, then decide it ourselves, else go with the
|
|
|
|
* value passed to us. When returning, if it's changed, subtract the
|
|
|
|
* number of bytes we read from *max_to_read.
|
|
|
|
*
|
2004-05-10 03:32:57 +02:00
|
|
|
* Return -1 if we want to break conn, else return 0.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
static int
|
|
|
|
connection_read_to_buf(connection_t *conn, int *max_to_read)
|
|
|
|
{
|
2004-11-21 08:43:12 +01:00
|
|
|
int result, at_most = *max_to_read;
|
2005-05-03 01:17:08 +02:00
|
|
|
size_t bytes_in_buf, more_to_read;
|
Implemented link padding and receiver token buckets
Each socket reads at most 'bandwidth' bytes per second sustained, but
can handle bursts of up to 10*bandwidth bytes.
Cells are now sent out at evenly-spaced intervals, with padding sent
out otherwise. Set Linkpadding=0 in the rc file to send cells as soon
as they're available (and to never send padding cells).
Added license/copyrights statements at the top of most files.
router->min and router->max have been merged into a single 'bandwidth'
value. We should make the routerinfo_t reflect this (want to do that,
Mat?)
As the bandwidth increases, and we want to stop sleeping more and more
frequently to send a single cell, cpu usage goes up. At 128kB/s we're
pretty much calling poll with a timeout of 1ms or even 0ms. The current
code takes a timeout of 0-9ms and makes it 10ms. prepare_for_poll()
handles everything that should have happened in the past, so as long as
our buffers don't get too full in that 10ms, we're ok.
Speaking of too full, if you run three servers at 100kB/s with -l debug,
it spends too much time printing debugging messages to be able to keep
up with the cells. The outbuf ultimately fills up and it kills that
connection. If you run with -l err, it works fine up through 500kB/s and
probably beyond. Down the road we'll want to teach it to recognize when
an outbuf is getting full, and back off.
svn:r50
2002-07-16 03:12:15 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (at_most == -1) { /* we need to initialize it */
|
2004-11-21 08:43:12 +01:00
|
|
|
/* how many bytes are we allowed to read? */
|
|
|
|
at_most = connection_bucket_read_limit(conn);
|
|
|
|
}
|
2002-10-02 01:37:31 +02:00
|
|
|
|
2005-05-03 01:17:08 +02:00
|
|
|
bytes_in_buf = buf_capacity(conn->inbuf) - buf_datalen(conn->inbuf);
|
|
|
|
again:
|
2005-05-07 07:55:06 +02:00
|
|
|
if ((size_t)at_most > bytes_in_buf && bytes_in_buf >= 1024) {
|
2005-05-03 01:17:08 +02:00
|
|
|
more_to_read = at_most - bytes_in_buf;
|
|
|
|
at_most = bytes_in_buf;
|
|
|
|
} else {
|
|
|
|
more_to_read = 0;
|
|
|
|
}
|
|
|
|
|
2005-03-23 00:57:18 +01:00
|
|
|
if (connection_speaks_cells(conn) && conn->state > OR_CONN_STATE_PROXY_READING) {
|
2005-01-12 07:42:32 +01:00
|
|
|
int pending;
|
2004-11-28 10:05:49 +01:00
|
|
|
if (conn->state == OR_CONN_STATE_HANDSHAKING) {
|
2004-03-14 18:06:29 +01:00
|
|
|
/* continue handshaking even if global token bucket is empty */
|
2003-09-08 12:59:00 +02:00
|
|
|
return connection_tls_continue_handshake(conn);
|
2004-03-14 18:06:29 +01:00
|
|
|
}
|
2003-09-08 12:59:00 +02:00
|
|
|
|
2004-04-26 23:15:06 +02:00
|
|
|
log_fn(LOG_DEBUG,"%d: starting, inbuf_datalen %d (%d pending in tls object). at_most %d.",
|
|
|
|
conn->s,(int)buf_datalen(conn->inbuf),tor_tls_get_pending_bytes(conn->tls), at_most);
|
|
|
|
|
2003-09-08 12:59:00 +02:00
|
|
|
/* else open, or closing */
|
2003-09-25 07:17:11 +02:00
|
|
|
result = read_to_buf_tls(conn->tls, at_most, conn->inbuf);
|
2003-09-07 12:24:40 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
switch (result) {
|
2003-09-07 12:24:40 +02:00
|
|
|
case TOR_TLS_CLOSE:
|
2004-11-13 17:53:48 +01:00
|
|
|
log_fn(LOG_INFO,"TLS connection closed on read. Closing. (Nickname %s, address %s",
|
|
|
|
conn->nickname ? conn->nickname : "not set", conn->address);
|
|
|
|
return -1;
|
|
|
|
case TOR_TLS_ERROR:
|
2004-05-06 13:08:04 +02:00
|
|
|
log_fn(LOG_INFO,"tls error. breaking (nickname %s, address %s).",
|
|
|
|
conn->nickname ? conn->nickname : "not set", conn->address);
|
2004-11-13 17:53:48 +01:00
|
|
|
return -1;
|
2003-09-08 12:59:00 +02:00
|
|
|
case TOR_TLS_WANTWRITE:
|
2003-09-07 12:24:40 +02:00
|
|
|
connection_start_writing(conn);
|
|
|
|
return 0;
|
2003-09-08 12:59:00 +02:00
|
|
|
case TOR_TLS_WANTREAD: /* we're already reading */
|
2003-09-07 12:24:40 +02:00
|
|
|
case TOR_TLS_DONE: /* no data read, so nothing to process */
|
2004-03-14 18:06:29 +01:00
|
|
|
result = 0;
|
|
|
|
break; /* so we call bucket_decrement below */
|
2005-01-12 07:42:32 +01:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pending = tor_tls_get_pending_bytes(conn->tls);
|
|
|
|
if (pending) {
|
|
|
|
/* XXXX If we have any pending bytes, read them now. This *can*
|
2005-06-11 08:07:22 +02:00
|
|
|
* take us over our read allotment, but really we shouldn't be
|
2005-01-12 07:42:32 +01:00
|
|
|
* believing that SSL bytes are the same as TCP bytes anyway. */
|
|
|
|
int r2 = read_to_buf_tls(conn->tls, pending, conn->inbuf);
|
|
|
|
if (r2<0) {
|
|
|
|
log_fn(LOG_WARN, "Bug: apparently, reading pending bytes can fail.");
|
2005-01-12 11:00:38 +01:00
|
|
|
return -1;
|
2005-01-12 07:42:32 +01:00
|
|
|
} else {
|
|
|
|
result += r2;
|
|
|
|
}
|
Implemented link padding and receiver token buckets
Each socket reads at most 'bandwidth' bytes per second sustained, but
can handle bursts of up to 10*bandwidth bytes.
Cells are now sent out at evenly-spaced intervals, with padding sent
out otherwise. Set Linkpadding=0 in the rc file to send cells as soon
as they're available (and to never send padding cells).
Added license/copyrights statements at the top of most files.
router->min and router->max have been merged into a single 'bandwidth'
value. We should make the routerinfo_t reflect this (want to do that,
Mat?)
As the bandwidth increases, and we want to stop sleeping more and more
frequently to send a single cell, cpu usage goes up. At 128kB/s we're
pretty much calling poll with a timeout of 1ms or even 0ms. The current
code takes a timeout of 0-9ms and makes it 10ms. prepare_for_poll()
handles everything that should have happened in the past, so as long as
our buffers don't get too full in that 10ms, we're ok.
Speaking of too full, if you run three servers at 100kB/s with -l debug,
it spends too much time printing debugging messages to be able to keep
up with the cells. The outbuf ultimately fills up and it kills that
connection. If you run with -l err, it works fine up through 500kB/s and
probably beyond. Down the road we'll want to teach it to recognize when
an outbuf is getting full, and back off.
svn:r50
2002-07-16 03:12:15 +02:00
|
|
|
}
|
2005-01-12 07:42:32 +01:00
|
|
|
|
2003-09-16 23:20:09 +02:00
|
|
|
} else {
|
2005-07-13 07:14:42 +02:00
|
|
|
CONN_LOG_PROTECT(conn,
|
|
|
|
result = read_to_buf(conn->s, at_most, conn->inbuf,
|
|
|
|
&conn->inbuf_reached_eof));
|
2003-09-25 07:17:11 +02:00
|
|
|
|
2004-12-22 03:55:26 +01:00
|
|
|
// log_fn(LOG_DEBUG,"read_to_buf returned %d.",read_result);
|
2003-09-07 12:24:40 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (result < 0)
|
2003-09-07 12:24:40 +02:00
|
|
|
return -1;
|
Implemented link padding and receiver token buckets
Each socket reads at most 'bandwidth' bytes per second sustained, but
can handle bursts of up to 10*bandwidth bytes.
Cells are now sent out at evenly-spaced intervals, with padding sent
out otherwise. Set Linkpadding=0 in the rc file to send cells as soon
as they're available (and to never send padding cells).
Added license/copyrights statements at the top of most files.
router->min and router->max have been merged into a single 'bandwidth'
value. We should make the routerinfo_t reflect this (want to do that,
Mat?)
As the bandwidth increases, and we want to stop sleeping more and more
frequently to send a single cell, cpu usage goes up. At 128kB/s we're
pretty much calling poll with a timeout of 1ms or even 0ms. The current
code takes a timeout of 0-9ms and makes it 10ms. prepare_for_poll()
handles everything that should have happened in the past, so as long as
our buffers don't get too full in that 10ms, we're ok.
Speaking of too full, if you run three servers at 100kB/s with -l debug,
it spends too much time printing debugging messages to be able to keep
up with the cells. The outbuf ultimately fills up and it kills that
connection. If you run with -l err, it works fine up through 500kB/s and
probably beyond. Down the road we'll want to teach it to recognize when
an outbuf is getting full, and back off.
svn:r50
2002-07-16 03:12:15 +02:00
|
|
|
}
|
|
|
|
|
2004-11-21 08:43:12 +01:00
|
|
|
if (result > 0) { /* change *max_to_read */
|
|
|
|
*max_to_read = at_most - result;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result > 0 && !is_local_IP(conn->addr)) { /* remember it */
|
2004-07-13 18:58:01 +02:00
|
|
|
rep_hist_note_bytes_read(result, time(NULL));
|
2004-11-07 02:33:06 +01:00
|
|
|
connection_read_bucket_decrement(conn, result);
|
2004-07-13 18:58:01 +02:00
|
|
|
}
|
|
|
|
|
2005-05-03 01:17:08 +02:00
|
|
|
if (more_to_read && result == at_most) {
|
|
|
|
bytes_in_buf = buf_capacity(conn->inbuf) - buf_datalen(conn->inbuf);
|
|
|
|
tor_assert(bytes_in_buf < 1024);
|
|
|
|
at_most = more_to_read;
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
|
2004-11-03 11:18:31 +01:00
|
|
|
/* Call even if result is 0, since the global read bucket may
|
|
|
|
* have reached 0 on a different conn, and this guy needs to
|
|
|
|
* know to stop reading. */
|
2004-11-07 02:33:06 +01:00
|
|
|
connection_consider_empty_buckets(conn);
|
2004-11-03 11:18:31 +01:00
|
|
|
|
2003-09-07 12:24:40 +02:00
|
|
|
return 0;
|
2002-06-27 00:45:49 +02:00
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** A pass-through to fetch_from_buf. */
|
2005-06-11 20:52:12 +02:00
|
|
|
int
|
|
|
|
connection_fetch_from_buf(char *string, size_t len, connection_t *conn)
|
|
|
|
{
|
2003-09-25 07:17:11 +02:00
|
|
|
return fetch_from_buf(string, len, conn->inbuf);
|
2002-06-27 00:45:49 +02:00
|
|
|
}
|
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** Return conn-\>outbuf_flushlen: how many bytes conn wants to flush
|
2004-05-10 03:32:57 +02:00
|
|
|
* from its outbuf. */
|
2005-06-11 20:52:12 +02:00
|
|
|
int
|
|
|
|
connection_wants_to_flush(connection_t *conn)
|
|
|
|
{
|
2002-07-18 08:37:58 +02:00
|
|
|
return conn->outbuf_flushlen;
|
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** Are there too many bytes on edge connection <b>conn</b>'s outbuf to
|
|
|
|
* send back a relay-level sendme yet? Return 1 if so, 0 if not. Used by
|
|
|
|
* connection_edge_consider_sending_sendme().
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
int
|
|
|
|
connection_outbuf_too_full(connection_t *conn)
|
|
|
|
{
|
2002-07-18 08:37:58 +02:00
|
|
|
return (conn->outbuf_flushlen > 10*CELL_PAYLOAD_SIZE);
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** Try to flush more bytes onto conn-\>s.
|
2004-05-10 03:32:57 +02:00
|
|
|
*
|
|
|
|
* This function gets called either from conn_write() in main.c
|
|
|
|
* when poll() has declared that conn wants to write, or below
|
|
|
|
* from connection_write_to_buf() when an entire TLS record is ready.
|
|
|
|
*
|
2004-05-10 06:34:48 +02:00
|
|
|
* Update conn-\>timestamp_lastwritten to now, and call flush_buf
|
2004-05-10 03:32:57 +02:00
|
|
|
* or flush_buf_tls appropriately. If it succeeds and there no more
|
|
|
|
* more bytes on conn->outbuf, then call connection_finished_flushing
|
|
|
|
* on it too.
|
|
|
|
*
|
|
|
|
* Mark the connection and return -1 if you want to close it, else
|
|
|
|
* return 0.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
int
|
|
|
|
connection_handle_write(connection_t *conn)
|
|
|
|
{
|
2005-05-07 07:55:06 +02:00
|
|
|
int e;
|
|
|
|
socklen_t len=sizeof(e);
|
2004-07-13 09:42:20 +02:00
|
|
|
int result;
|
|
|
|
time_t now = time(NULL);
|
2003-09-05 08:04:03 +02:00
|
|
|
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(!connection_is_listener(conn));
|
2002-10-02 01:37:31 +02:00
|
|
|
|
2005-06-08 06:55:06 +02:00
|
|
|
if (conn->marked_for_close)
|
|
|
|
return 0; /* do nothing */
|
|
|
|
|
2004-07-13 09:42:20 +02:00
|
|
|
conn->timestamp_lastwritten = now;
|
2003-09-05 08:04:03 +02:00
|
|
|
|
2004-12-01 04:48:14 +01:00
|
|
|
/* Sometimes, "writable" means "connected". */
|
2004-05-12 21:17:09 +02:00
|
|
|
if (connection_state_is_connecting(conn)) {
|
|
|
|
if (getsockopt(conn->s, SOL_SOCKET, SO_ERROR, (void*)&e, &len) < 0) {
|
2004-07-20 01:26:21 +02:00
|
|
|
log_fn(LOG_WARN,"getsockopt() syscall failed?! Please report to tor-ops.");
|
2005-02-23 21:35:26 +01:00
|
|
|
if (CONN_IS_EDGE(conn))
|
2005-03-01 23:42:31 +01:00
|
|
|
connection_edge_end_errno(conn, conn->cpath_layer);
|
2004-07-20 01:26:21 +02:00
|
|
|
connection_mark_for_close(conn);
|
|
|
|
return -1;
|
|
|
|
}
|
2004-11-28 10:05:49 +01:00
|
|
|
if (e) {
|
2004-07-20 01:26:21 +02:00
|
|
|
/* some sort of error, but maybe just inprogress still */
|
2004-11-28 10:05:49 +01:00
|
|
|
if (!ERRNO_IS_CONN_EINPROGRESS(e)) {
|
2004-07-20 01:26:21 +02:00
|
|
|
log_fn(LOG_INFO,"in-progress connect failed. Removing.");
|
2005-02-23 21:35:26 +01:00
|
|
|
if (CONN_IS_EDGE(conn))
|
2005-03-01 23:42:31 +01:00
|
|
|
connection_edge_end_errno(conn, conn->cpath_layer);
|
2005-02-23 21:35:26 +01:00
|
|
|
|
2004-05-12 21:17:09 +02:00
|
|
|
connection_close_immediate(conn);
|
2004-05-12 23:12:33 +02:00
|
|
|
connection_mark_for_close(conn);
|
2004-07-12 20:19:55 +02:00
|
|
|
/* it's safe to pass OPs to router_mark_as_down(), since it just
|
|
|
|
* ignores unrecognized routers
|
|
|
|
*/
|
2005-03-25 11:55:06 +01:00
|
|
|
if (conn->type == CONN_TYPE_OR && !get_options()->HttpsProxy)
|
2004-07-03 01:40:03 +02:00
|
|
|
router_mark_as_down(conn->identity_digest);
|
2004-05-12 21:17:09 +02:00
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
return 0; /* no change, see if next time is better */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* The connection is successful. */
|
2005-02-22 04:02:33 +01:00
|
|
|
if (connection_finished_connecting(conn)<0)
|
|
|
|
return -1;
|
2004-05-12 21:17:09 +02:00
|
|
|
}
|
|
|
|
|
2005-03-23 00:57:18 +01:00
|
|
|
if (connection_speaks_cells(conn) && conn->state > OR_CONN_STATE_PROXY_READING) {
|
2004-02-28 05:11:53 +01:00
|
|
|
if (conn->state == OR_CONN_STATE_HANDSHAKING) {
|
2003-09-11 22:06:55 +02:00
|
|
|
connection_stop_writing(conn);
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_tls_continue_handshake(conn) < 0) {
|
2004-03-03 08:26:34 +01:00
|
|
|
connection_close_immediate(conn); /* Don't flush; connection is dead. */
|
2004-05-12 23:12:33 +02:00
|
|
|
connection_mark_for_close(conn);
|
2004-03-03 08:26:34 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
2003-09-11 22:06:55 +02:00
|
|
|
}
|
2003-09-05 08:04:03 +02:00
|
|
|
|
2003-09-08 12:59:00 +02:00
|
|
|
/* else open, or closing */
|
2004-07-13 09:42:20 +02:00
|
|
|
result = flush_buf_tls(conn->tls, conn->outbuf, &conn->outbuf_flushlen);
|
2004-11-28 10:05:49 +01:00
|
|
|
switch (result) {
|
2003-09-07 12:24:40 +02:00
|
|
|
case TOR_TLS_ERROR:
|
|
|
|
case TOR_TLS_CLOSE:
|
2004-11-13 17:53:48 +01:00
|
|
|
log_fn(LOG_INFO,result==TOR_TLS_ERROR?
|
|
|
|
"tls error. breaking.":"TLS connection closed on flush");
|
2004-03-03 08:26:34 +01:00
|
|
|
connection_close_immediate(conn); /* Don't flush; connection is dead. */
|
2004-05-12 23:12:33 +02:00
|
|
|
connection_mark_for_close(conn);
|
2004-11-13 17:53:48 +01:00
|
|
|
return -1;
|
2003-09-08 12:59:00 +02:00
|
|
|
case TOR_TLS_WANTWRITE:
|
cleanups, bugfixes, more verbose logs
Fixed up the assert_*_ok funcs some (more work remains)
Changed config so it reads either /etc/torrc or the -f arg, never both
Finally tracked down a nasty bug with our use of tls:
It turns out that if you ask SSL_read() for no more than n bytes, it
will read the entire record from the network (and maybe part of the next
record, I'm not sure), give you n bytes of it, and keep the remaining
bytes internally. This is fine, except our poll-for-read looks at the
network, and there are no bytes pending on the network, so we never know
to ask SSL_read() for more bytes. Currently I've hacked it so if we ask
for n bytes and it returns n bytes, then it reads again right then. This
will interact poorly with our rate limiting; we need a cleaner solution.
svn:r481
2003-09-24 23:24:52 +02:00
|
|
|
log_fn(LOG_DEBUG,"wanted write.");
|
2003-09-07 12:24:40 +02:00
|
|
|
/* we're already writing */
|
|
|
|
return 0;
|
2003-09-08 12:59:00 +02:00
|
|
|
case TOR_TLS_WANTREAD:
|
2003-09-07 12:24:40 +02:00
|
|
|
/* Make sure to avoid a loop if the receive buckets are empty. */
|
cleanups, bugfixes, more verbose logs
Fixed up the assert_*_ok funcs some (more work remains)
Changed config so it reads either /etc/torrc or the -f arg, never both
Finally tracked down a nasty bug with our use of tls:
It turns out that if you ask SSL_read() for no more than n bytes, it
will read the entire record from the network (and maybe part of the next
record, I'm not sure), give you n bytes of it, and keep the remaining
bytes internally. This is fine, except our poll-for-read looks at the
network, and there are no bytes pending on the network, so we never know
to ask SSL_read() for more bytes. Currently I've hacked it so if we ask
for n bytes and it returns n bytes, then it reads again right then. This
will interact poorly with our rate limiting; we need a cleaner solution.
svn:r481
2003-09-24 23:24:52 +02:00
|
|
|
log_fn(LOG_DEBUG,"wanted read.");
|
2004-11-28 10:05:49 +01:00
|
|
|
if (!connection_is_reading(conn)) {
|
2003-09-07 12:24:40 +02:00
|
|
|
connection_stop_writing(conn);
|
|
|
|
conn->wants_to_write = 1;
|
|
|
|
/* we'll start reading again when the next second arrives,
|
|
|
|
* and then also start writing again.
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
/* else no problem, we're already reading */
|
|
|
|
return 0;
|
2003-09-14 04:58:50 +02:00
|
|
|
/* case TOR_TLS_DONE:
|
|
|
|
* for TOR_TLS_DONE, fall through to check if the flushlen
|
2003-09-07 12:24:40 +02:00
|
|
|
* is empty, so we can stop writing.
|
2003-12-17 22:09:31 +01:00
|
|
|
*/
|
2003-09-07 12:24:40 +02:00
|
|
|
}
|
2003-09-16 23:20:09 +02:00
|
|
|
} else {
|
2005-07-13 07:14:42 +02:00
|
|
|
CONN_LOG_PROTECT(conn,
|
|
|
|
result = flush_buf(conn->s, conn->outbuf, &conn->outbuf_flushlen));
|
2004-07-13 09:42:20 +02:00
|
|
|
if (result < 0) {
|
2005-02-23 21:35:26 +01:00
|
|
|
if (CONN_IS_EDGE(conn))
|
2005-03-01 23:42:31 +01:00
|
|
|
connection_edge_end_errno(conn, conn->cpath_layer);
|
|
|
|
|
2004-03-03 08:26:34 +01:00
|
|
|
connection_close_immediate(conn); /* Don't flush; connection is dead. */
|
2004-05-12 23:12:33 +02:00
|
|
|
connection_mark_for_close(conn);
|
2003-09-07 12:24:40 +02:00
|
|
|
return -1;
|
2004-02-28 05:11:53 +01:00
|
|
|
}
|
2003-09-05 08:04:03 +02:00
|
|
|
}
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (result > 0 && !is_local_IP(conn->addr)) { /* remember it */
|
2004-07-13 09:42:20 +02:00
|
|
|
rep_hist_note_bytes_written(result, now);
|
2004-11-03 00:47:32 +01:00
|
|
|
global_write_bucket -= result;
|
2004-07-13 09:42:20 +02:00
|
|
|
}
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (!connection_wants_to_flush(conn)) { /* it's done flushing */
|
|
|
|
if (connection_finished_flushing(conn) < 0) {
|
2004-04-26 00:23:54 +02:00
|
|
|
/* already marked */
|
2003-09-07 12:24:40 +02:00
|
|
|
return -1;
|
2004-04-26 00:23:54 +02:00
|
|
|
}
|
2004-05-12 21:49:48 +02:00
|
|
|
}
|
2003-09-07 12:24:40 +02:00
|
|
|
|
|
|
|
return 0;
|
2003-09-05 08:04:03 +02:00
|
|
|
}
|
|
|
|
|
2005-04-08 05:36:39 +02:00
|
|
|
/* DOCDOC */
|
2005-06-11 20:52:12 +02:00
|
|
|
void
|
|
|
|
_connection_controller_force_write(connection_t *conn)
|
2005-04-08 05:36:39 +02:00
|
|
|
{
|
|
|
|
/* XXX This is hideous code duplication, but raising it seems a little
|
|
|
|
* tricky for now. Think more about this one. We only call it for
|
|
|
|
* EVENT_ERR_MSG, so messing with buckets a little isn't such a big problem.
|
|
|
|
*/
|
|
|
|
int result;
|
|
|
|
tor_assert(conn);
|
|
|
|
tor_assert(!conn->tls);
|
|
|
|
tor_assert(conn->type == CONN_TYPE_CONTROL);
|
|
|
|
if (conn->marked_for_close || conn->s < 0)
|
|
|
|
return;
|
|
|
|
|
2005-07-13 07:14:42 +02:00
|
|
|
CONN_LOG_PROTECT(conn,
|
|
|
|
result = flush_buf(conn->s, conn->outbuf, &conn->outbuf_flushlen));
|
2005-04-08 05:36:39 +02:00
|
|
|
if (result < 0) {
|
|
|
|
connection_close_immediate(conn); /* Don't flush; connection is dead. */
|
|
|
|
connection_mark_for_close(conn);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result > 0 && !is_local_IP(conn->addr)) { /* remember it */
|
|
|
|
rep_hist_note_bytes_written(result, time(NULL));
|
|
|
|
global_write_bucket -= result;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!connection_wants_to_flush(conn)) { /* it's done flushing */
|
|
|
|
if (connection_finished_flushing(conn) < 0) {
|
|
|
|
/* already marked */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** Append <b>len</b> bytes of <b>string</b> onto <b>conn</b>'s
|
2004-05-13 00:56:26 +02:00
|
|
|
* outbuf, and ask it to start writing.
|
2004-05-10 03:32:57 +02:00
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
void
|
|
|
|
connection_write_to_buf(const char *string, size_t len, connection_t *conn)
|
|
|
|
{
|
2005-07-13 07:14:42 +02:00
|
|
|
int r;
|
2004-12-04 08:13:37 +01:00
|
|
|
if (!len)
|
|
|
|
return;
|
|
|
|
/* if it's marked for close, only allow write if we mean to flush it */
|
|
|
|
if (conn->marked_for_close && !conn->hold_open_until_flushed)
|
2003-10-04 04:38:18 +02:00
|
|
|
return;
|
major overhaul: dns slave subsystem, topics
on startup, it forks off a master dns handler, which forks off dns
slaves (like the apache model). slaves as spawned as load increases,
and then reused. excess slaves are not ever killed, currently.
implemented topics. each topic has a receive window in each direction
at each edge of the circuit, and sends sendme's at the data level, as
per before. each circuit also has receive windows in each direction at
each hop; an edge sends a circuit-level sendme as soon as enough data
cells have arrived (regardless of whether the data cells were flushed
to the exit conns). removed the 'connected' cell type, since it's now
a topic command within data cells.
at the edge of the circuit, there can be multiple connections associated
with a single circuit. you find them via the linked list conn->next_topic.
currently each new ap connection starts its own circuit, so we ought
to see comparable performance to what we had before. but that's only
because i haven't written the code to reattach to old circuits. please
try to break it as-is, and then i'll make it reuse the same circuit and
we'll try to break that.
svn:r152
2003-01-26 10:02:24 +01:00
|
|
|
|
2005-07-13 07:14:42 +02:00
|
|
|
CONN_LOG_PROTECT(conn, r = write_to_buf(string, len, conn->outbuf));
|
|
|
|
if (r < 0) {
|
2005-02-23 21:35:26 +01:00
|
|
|
if (CONN_IS_EDGE(conn)) {
|
2004-05-13 00:56:26 +02:00
|
|
|
/* if it failed, it means we have our package/delivery windows set
|
|
|
|
wrong compared to our max outbuf size. close the whole circuit. */
|
|
|
|
log_fn(LOG_WARN,"write_to_buf failed. Closing circuit (fd %d).", conn->s);
|
2005-04-06 08:43:21 +02:00
|
|
|
circuit_mark_for_close(circuit_get_by_edge_conn(conn));
|
2004-05-13 00:56:26 +02:00
|
|
|
} else {
|
|
|
|
log_fn(LOG_WARN,"write_to_buf failed. Closing connection (fd %d).", conn->s);
|
|
|
|
connection_mark_for_close(conn);
|
|
|
|
}
|
2003-11-30 10:35:26 +01:00
|
|
|
return;
|
2003-10-04 04:38:18 +02:00
|
|
|
}
|
2003-11-30 10:35:26 +01:00
|
|
|
|
|
|
|
connection_start_writing(conn);
|
2004-05-13 00:56:26 +02:00
|
|
|
conn->outbuf_flushlen += len;
|
2002-06-27 00:45:49 +02:00
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** Return the conn to addr/port that has the most recent
|
|
|
|
* timestamp_created, or NULL if no such conn exists. */
|
2005-06-11 20:52:12 +02:00
|
|
|
connection_t *
|
|
|
|
connection_or_exact_get_by_addr_port(uint32_t addr, uint16_t port)
|
|
|
|
{
|
2003-09-30 21:06:22 +02:00
|
|
|
int i, n;
|
2004-04-25 06:49:11 +02:00
|
|
|
connection_t *conn, *best=NULL;
|
2003-09-30 21:06:22 +02:00
|
|
|
connection_t **carray;
|
2003-12-17 22:09:31 +01:00
|
|
|
|
2003-09-30 21:06:22 +02:00
|
|
|
get_connection_array(&carray,&n);
|
2004-11-28 10:05:49 +01:00
|
|
|
for (i=0;i<n;i++) {
|
2003-09-30 21:06:22 +02:00
|
|
|
conn = carray[i];
|
2005-04-06 17:19:32 +02:00
|
|
|
if (conn->type == CONN_TYPE_OR &&
|
|
|
|
conn->addr == addr &&
|
|
|
|
conn->port == port &&
|
|
|
|
!conn->marked_for_close &&
|
2004-11-28 12:39:53 +01:00
|
|
|
(!best || best->timestamp_created < conn->timestamp_created))
|
2004-04-25 06:49:11 +02:00
|
|
|
best = conn;
|
2003-09-30 21:06:22 +02:00
|
|
|
}
|
2004-04-25 06:49:11 +02:00
|
|
|
return best;
|
2003-09-30 21:06:22 +02:00
|
|
|
}
|
|
|
|
|
2005-06-11 20:52:12 +02:00
|
|
|
connection_t *
|
|
|
|
connection_get_by_identity_digest(const char *digest, int type)
|
2004-07-01 03:16:59 +02:00
|
|
|
{
|
|
|
|
int i, n;
|
|
|
|
connection_t *conn, *best=NULL;
|
|
|
|
connection_t **carray;
|
|
|
|
|
|
|
|
get_connection_array(&carray,&n);
|
2004-11-28 10:05:49 +01:00
|
|
|
for (i=0;i<n;i++) {
|
2004-07-01 03:16:59 +02:00
|
|
|
conn = carray[i];
|
|
|
|
if (conn->type != type)
|
|
|
|
continue;
|
2004-11-28 12:39:53 +01:00
|
|
|
if (!memcmp(conn->identity_digest, digest, DIGEST_LEN) &&
|
|
|
|
!conn->marked_for_close &&
|
|
|
|
(!best || best->timestamp_created < conn->timestamp_created))
|
2004-07-01 03:16:59 +02:00
|
|
|
best = conn;
|
|
|
|
}
|
|
|
|
return best;
|
|
|
|
}
|
|
|
|
|
2005-03-12 05:22:01 +01:00
|
|
|
/** Return the connection with id <b>id</b> if it is not already
|
|
|
|
* marked for close.
|
|
|
|
*/
|
|
|
|
connection_t *
|
2005-06-11 20:52:12 +02:00
|
|
|
connection_get_by_global_id(uint32_t id)
|
|
|
|
{
|
2005-03-12 05:22:01 +01:00
|
|
|
int i, n;
|
|
|
|
connection_t *conn;
|
|
|
|
connection_t **carray;
|
|
|
|
|
|
|
|
get_connection_array(&carray,&n);
|
|
|
|
for (i=0;i<n;i++) {
|
|
|
|
conn = carray[i];
|
|
|
|
if (conn->global_identifier == id) {
|
|
|
|
if (!conn->marked_for_close)
|
|
|
|
return conn;
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** Return a connection of type <b>type</b> that is not marked for
|
|
|
|
* close.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
connection_t *
|
|
|
|
connection_get_by_type(int type)
|
|
|
|
{
|
2003-09-30 21:06:22 +02:00
|
|
|
int i, n;
|
|
|
|
connection_t *conn;
|
|
|
|
connection_t **carray;
|
2003-12-17 22:09:31 +01:00
|
|
|
|
2003-09-30 21:06:22 +02:00
|
|
|
get_connection_array(&carray,&n);
|
2004-11-28 10:05:49 +01:00
|
|
|
for (i=0;i<n;i++) {
|
2003-09-30 21:06:22 +02:00
|
|
|
conn = carray[i];
|
2004-11-28 10:05:49 +01:00
|
|
|
if (conn->type == type && !conn->marked_for_close)
|
2003-09-30 21:06:22 +02:00
|
|
|
return conn;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** Return a connection of type <b>type</b> that is in state <b>state</b>,
|
|
|
|
* and that is not marked for close.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
connection_t *
|
|
|
|
connection_get_by_type_state(int type, int state)
|
|
|
|
{
|
2003-09-30 21:06:22 +02:00
|
|
|
int i, n;
|
|
|
|
connection_t *conn;
|
|
|
|
connection_t **carray;
|
2003-12-17 22:09:31 +01:00
|
|
|
|
2003-09-30 21:25:16 +02:00
|
|
|
get_connection_array(&carray,&n);
|
2004-11-28 10:05:49 +01:00
|
|
|
for (i=0;i<n;i++) {
|
2003-09-30 21:06:22 +02:00
|
|
|
conn = carray[i];
|
2004-11-28 10:05:49 +01:00
|
|
|
if (conn->type == type && conn->state == state && !conn->marked_for_close)
|
2003-09-30 21:06:22 +02:00
|
|
|
return conn;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** Return the connection of type <b>type</b> that is in state
|
|
|
|
* <b>state</b>, that was written to least recently, and that is not
|
|
|
|
* marked for close.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
connection_t *
|
|
|
|
connection_get_by_type_state_lastwritten(int type, int state)
|
|
|
|
{
|
2003-09-30 21:06:22 +02:00
|
|
|
int i, n;
|
|
|
|
connection_t *conn, *best=NULL;
|
|
|
|
connection_t **carray;
|
2003-12-17 22:09:31 +01:00
|
|
|
|
2003-09-30 21:25:16 +02:00
|
|
|
get_connection_array(&carray,&n);
|
2004-11-28 10:05:49 +01:00
|
|
|
for (i=0;i<n;i++) {
|
2003-09-30 21:06:22 +02:00
|
|
|
conn = carray[i];
|
2004-11-28 10:05:49 +01:00
|
|
|
if (conn->type == type && conn->state == state && !conn->marked_for_close)
|
|
|
|
if (!best || conn->timestamp_lastwritten < best->timestamp_lastwritten)
|
2003-09-30 21:06:22 +02:00
|
|
|
best = conn;
|
|
|
|
}
|
|
|
|
return best;
|
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** Return a connection of type <b>type</b> that has rendquery equal
|
2005-01-20 00:15:59 +01:00
|
|
|
* to <b>rendquery</b>, and that is not marked for close. If state
|
|
|
|
* is non-zero, conn must be of that state too.
|
2004-05-10 03:32:57 +02:00
|
|
|
*/
|
2005-01-20 00:15:59 +01:00
|
|
|
connection_t *
|
|
|
|
connection_get_by_type_state_rendquery(int type, int state, const char *rendquery) {
|
2004-04-05 02:47:48 +02:00
|
|
|
int i, n;
|
|
|
|
connection_t *conn;
|
|
|
|
connection_t **carray;
|
|
|
|
|
|
|
|
get_connection_array(&carray,&n);
|
2004-11-28 10:05:49 +01:00
|
|
|
for (i=0;i<n;i++) {
|
2004-04-05 02:47:48 +02:00
|
|
|
conn = carray[i];
|
2004-11-28 10:05:49 +01:00
|
|
|
if (conn->type == type &&
|
2004-11-28 12:39:53 +01:00
|
|
|
!conn->marked_for_close &&
|
2005-01-20 00:15:59 +01:00
|
|
|
(!state || state == conn->state) &&
|
2004-11-28 12:39:53 +01:00
|
|
|
!rend_cmp_service_ids(rendquery, conn->rend_query))
|
2004-04-05 02:47:48 +02:00
|
|
|
return conn;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** Return 1 if <b>conn</b> is a listener conn, else return 0. */
|
2005-06-11 20:52:12 +02:00
|
|
|
int
|
|
|
|
connection_is_listener(connection_t *conn)
|
|
|
|
{
|
2004-11-28 10:05:49 +01:00
|
|
|
if (conn->type == CONN_TYPE_OR_LISTENER ||
|
2004-11-28 12:39:53 +01:00
|
|
|
conn->type == CONN_TYPE_AP_LISTENER ||
|
|
|
|
conn->type == CONN_TYPE_DIR_LISTENER ||
|
|
|
|
conn->type == CONN_TYPE_CONTROL_LISTENER)
|
2002-09-22 00:41:48 +02:00
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** Return 1 if <b>conn</b> is in state "open" and is not marked
|
2004-05-10 03:32:57 +02:00
|
|
|
* for close, else return 0.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
int
|
|
|
|
connection_state_is_open(connection_t *conn)
|
|
|
|
{
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn);
|
Implemented link padding and receiver token buckets
Each socket reads at most 'bandwidth' bytes per second sustained, but
can handle bursts of up to 10*bandwidth bytes.
Cells are now sent out at evenly-spaced intervals, with padding sent
out otherwise. Set Linkpadding=0 in the rc file to send cells as soon
as they're available (and to never send padding cells).
Added license/copyrights statements at the top of most files.
router->min and router->max have been merged into a single 'bandwidth'
value. We should make the routerinfo_t reflect this (want to do that,
Mat?)
As the bandwidth increases, and we want to stop sleeping more and more
frequently to send a single cell, cpu usage goes up. At 128kB/s we're
pretty much calling poll with a timeout of 1ms or even 0ms. The current
code takes a timeout of 0-9ms and makes it 10ms. prepare_for_poll()
handles everything that should have happened in the past, so as long as
our buffers don't get too full in that 10ms, we're ok.
Speaking of too full, if you run three servers at 100kB/s with -l debug,
it spends too much time printing debugging messages to be able to keep
up with the cells. The outbuf ultimately fills up and it kills that
connection. If you run with -l err, it works fine up through 500kB/s and
probably beyond. Down the road we'll want to teach it to recognize when
an outbuf is getting full, and back off.
svn:r50
2002-07-16 03:12:15 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (conn->marked_for_close)
|
2003-11-18 11:17:52 +01:00
|
|
|
return 0;
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if ((conn->type == CONN_TYPE_OR && conn->state == OR_CONN_STATE_OPEN) ||
|
2004-11-28 12:39:53 +01:00
|
|
|
(conn->type == CONN_TYPE_AP && conn->state == AP_CONN_STATE_OPEN) ||
|
|
|
|
(conn->type == CONN_TYPE_EXIT && conn->state == EXIT_CONN_STATE_OPEN) ||
|
2005-06-17 20:49:55 +02:00
|
|
|
(conn->type == CONN_TYPE_CONTROL &&
|
|
|
|
(conn->state == CONTROL_CONN_STATE_OPEN_V0 ||
|
|
|
|
conn->state == CONTROL_CONN_STATE_OPEN_V1)))
|
Implemented link padding and receiver token buckets
Each socket reads at most 'bandwidth' bytes per second sustained, but
can handle bursts of up to 10*bandwidth bytes.
Cells are now sent out at evenly-spaced intervals, with padding sent
out otherwise. Set Linkpadding=0 in the rc file to send cells as soon
as they're available (and to never send padding cells).
Added license/copyrights statements at the top of most files.
router->min and router->max have been merged into a single 'bandwidth'
value. We should make the routerinfo_t reflect this (want to do that,
Mat?)
As the bandwidth increases, and we want to stop sleeping more and more
frequently to send a single cell, cpu usage goes up. At 128kB/s we're
pretty much calling poll with a timeout of 1ms or even 0ms. The current
code takes a timeout of 0-9ms and makes it 10ms. prepare_for_poll()
handles everything that should have happened in the past, so as long as
our buffers don't get too full in that 10ms, we're ok.
Speaking of too full, if you run three servers at 100kB/s with -l debug,
it spends too much time printing debugging messages to be able to keep
up with the cells. The outbuf ultimately fills up and it kills that
connection. If you run with -l err, it works fine up through 500kB/s and
probably beyond. Down the road we'll want to teach it to recognize when
an outbuf is getting full, and back off.
svn:r50
2002-07-16 03:12:15 +02:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-05-12 21:49:48 +02:00
|
|
|
/** Return 1 if conn is in 'connecting' state, else return 0. */
|
2005-06-11 20:52:12 +02:00
|
|
|
int
|
|
|
|
connection_state_is_connecting(connection_t *conn)
|
|
|
|
{
|
2004-05-12 21:17:09 +02:00
|
|
|
tor_assert(conn);
|
|
|
|
|
|
|
|
if (conn->marked_for_close)
|
|
|
|
return 0;
|
|
|
|
switch (conn->type)
|
|
|
|
{
|
|
|
|
case CONN_TYPE_OR:
|
|
|
|
return conn->state == OR_CONN_STATE_CONNECTING;
|
|
|
|
case CONN_TYPE_EXIT:
|
|
|
|
return conn->state == EXIT_CONN_STATE_CONNECTING;
|
|
|
|
case CONN_TYPE_DIR:
|
|
|
|
return conn->state == DIR_CONN_STATE_CONNECTING;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** Write a destroy cell with circ ID <b>circ_id</b> onto OR connection
|
2004-05-10 03:32:57 +02:00
|
|
|
* <b>conn</b>.
|
|
|
|
*
|
|
|
|
* Return 0.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
int
|
|
|
|
connection_send_destroy(uint16_t circ_id, connection_t *conn)
|
|
|
|
{
|
2002-06-27 00:45:49 +02:00
|
|
|
cell_t cell;
|
|
|
|
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn);
|
|
|
|
tor_assert(connection_speaks_cells(conn));
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2003-03-11 22:38:38 +01:00
|
|
|
memset(&cell, 0, sizeof(cell_t));
|
2003-11-11 04:01:48 +01:00
|
|
|
cell.circ_id = circ_id;
|
2002-06-27 00:45:49 +02:00
|
|
|
cell.command = CELL_DESTROY;
|
2003-11-11 04:01:48 +01:00
|
|
|
log_fn(LOG_INFO,"Sending destroy (circID %d).", circ_id);
|
2003-10-09 20:45:14 +02:00
|
|
|
connection_or_write_cell_to_buf(&cell, conn);
|
2003-10-04 04:38:18 +02:00
|
|
|
return 0;
|
2002-09-17 10:14:37 +02:00
|
|
|
}
|
|
|
|
|
2005-05-20 10:51:45 +02:00
|
|
|
/** Alloocates a base64'ed authenticator for use in http or https
|
|
|
|
* auth, based on the input string <b>authenticator</b>. Returns it
|
|
|
|
* if success, else returns NULL. */
|
|
|
|
char *
|
2005-06-11 20:52:12 +02:00
|
|
|
alloc_http_authenticator(const char *authenticator)
|
|
|
|
{
|
2005-05-20 10:51:45 +02:00
|
|
|
/* an authenticator in Basic authentication
|
|
|
|
* is just the string "username:password" */
|
|
|
|
const int authenticator_length = strlen(authenticator);
|
|
|
|
/* The base64_encode function needs a minimum buffer length
|
|
|
|
* of 66 bytes. */
|
|
|
|
const int base64_authenticator_length = (authenticator_length/48+1)*66;
|
|
|
|
char *base64_authenticator = tor_malloc(base64_authenticator_length);
|
|
|
|
if (base64_encode(base64_authenticator, base64_authenticator_length,
|
|
|
|
authenticator, authenticator_length) < 0) {
|
|
|
|
tor_free(base64_authenticator); /* free and set to null */
|
|
|
|
} else {
|
|
|
|
/* remove extra \n at end of encoding */
|
|
|
|
base64_authenticator[strlen(base64_authenticator) - 1] = 0;
|
|
|
|
}
|
|
|
|
return base64_authenticator;
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** Process new bytes that have arrived on conn-\>inbuf.
|
2004-05-10 03:32:57 +02:00
|
|
|
*
|
|
|
|
* This function just passes conn to the connection-specific
|
2004-11-21 08:43:12 +01:00
|
|
|
* connection_*_process_inbuf() function. It also passes in
|
|
|
|
* package_partial if wanted.
|
2004-05-10 03:32:57 +02:00
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
static int
|
|
|
|
connection_process_inbuf(connection_t *conn, int package_partial)
|
|
|
|
{
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn);
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
switch (conn->type) {
|
2002-06-27 00:45:49 +02:00
|
|
|
case CONN_TYPE_OR:
|
|
|
|
return connection_or_process_inbuf(conn);
|
2002-06-30 09:37:49 +02:00
|
|
|
case CONN_TYPE_EXIT:
|
Integrated onion proxy into or/
The 'or' process can now be told (by the global_role variable) what
roles this server should play -- connect to all ORs, listen for ORs,
listen for OPs, listen for APs, or any combination.
* everything in /src/op/ is now obsolete.
* connection_ap.c now handles all interactions with application proxies
* "port" is now or_port, op_port, ap_port. But routers are still always
referenced (say, in conn_get_by_addr_port()) by addr / or_port. We
should make routers.c actually read these new ports (currently I've
kludged it so op_port = or_port+10, ap_port=or_port+20)
* circuits currently know if they're at the beginning of the path because
circ->cpath is set. They use this instead for crypts (both ways),
if it's set.
* I still obey the "send a 0 back to the AP when you're ready" protocol,
but I think we should phase it out. I can simply not read from the AP
socket until I'm ready.
I need to do a lot of cleanup work here, but the code appears to work, so
now's a good time for a checkin.
svn:r22
2002-07-02 11:36:58 +02:00
|
|
|
case CONN_TYPE_AP:
|
2004-11-21 08:43:12 +01:00
|
|
|
return connection_edge_process_inbuf(conn, package_partial);
|
2002-09-26 14:09:10 +02:00
|
|
|
case CONN_TYPE_DIR:
|
|
|
|
return connection_dir_process_inbuf(conn);
|
2003-06-17 16:31:05 +02:00
|
|
|
case CONN_TYPE_DNSWORKER:
|
2003-12-17 22:09:31 +01:00
|
|
|
return connection_dns_process_inbuf(conn);
|
2003-08-21 01:05:22 +02:00
|
|
|
case CONN_TYPE_CPUWORKER:
|
2003-12-17 22:09:31 +01:00
|
|
|
return connection_cpu_process_inbuf(conn);
|
2004-11-03 02:32:26 +01:00
|
|
|
case CONN_TYPE_CONTROL:
|
|
|
|
return connection_control_process_inbuf(conn);
|
2002-06-27 00:45:49 +02:00
|
|
|
default:
|
2004-12-13 01:44:39 +01:00
|
|
|
log_fn(LOG_WARN,"Bug: got unexpected conn type %d.", conn->type);
|
2005-04-26 20:52:16 +02:00
|
|
|
tor_fragile_assert();
|
2002-06-27 00:45:49 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** We just finished flushing bytes from conn-\>outbuf, and there
|
2004-05-10 03:32:57 +02:00
|
|
|
* are no more bytes remaining.
|
|
|
|
*
|
|
|
|
* This function just passes conn to the connection-specific
|
|
|
|
* connection_*_finished_flushing() function.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
static int
|
|
|
|
connection_finished_flushing(connection_t *conn)
|
|
|
|
{
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn);
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2003-06-18 00:18:26 +02:00
|
|
|
// log_fn(LOG_DEBUG,"entered. Socket %u.", conn->s);
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
switch (conn->type) {
|
2002-06-27 00:45:49 +02:00
|
|
|
case CONN_TYPE_OR:
|
|
|
|
return connection_or_finished_flushing(conn);
|
2003-04-12 00:11:11 +02:00
|
|
|
case CONN_TYPE_AP:
|
2002-06-30 09:37:49 +02:00
|
|
|
case CONN_TYPE_EXIT:
|
2003-04-12 00:11:11 +02:00
|
|
|
return connection_edge_finished_flushing(conn);
|
2002-09-26 14:09:10 +02:00
|
|
|
case CONN_TYPE_DIR:
|
|
|
|
return connection_dir_finished_flushing(conn);
|
2003-06-17 16:31:05 +02:00
|
|
|
case CONN_TYPE_DNSWORKER:
|
major overhaul: dns slave subsystem, topics
on startup, it forks off a master dns handler, which forks off dns
slaves (like the apache model). slaves as spawned as load increases,
and then reused. excess slaves are not ever killed, currently.
implemented topics. each topic has a receive window in each direction
at each edge of the circuit, and sends sendme's at the data level, as
per before. each circuit also has receive windows in each direction at
each hop; an edge sends a circuit-level sendme as soon as enough data
cells have arrived (regardless of whether the data cells were flushed
to the exit conns). removed the 'connected' cell type, since it's now
a topic command within data cells.
at the edge of the circuit, there can be multiple connections associated
with a single circuit. you find them via the linked list conn->next_topic.
currently each new ap connection starts its own circuit, so we ought
to see comparable performance to what we had before. but that's only
because i haven't written the code to reattach to old circuits. please
try to break it as-is, and then i'll make it reuse the same circuit and
we'll try to break that.
svn:r152
2003-01-26 10:02:24 +01:00
|
|
|
return connection_dns_finished_flushing(conn);
|
2003-08-21 01:05:22 +02:00
|
|
|
case CONN_TYPE_CPUWORKER:
|
|
|
|
return connection_cpu_finished_flushing(conn);
|
2004-11-03 02:32:26 +01:00
|
|
|
case CONN_TYPE_CONTROL:
|
|
|
|
return connection_control_finished_flushing(conn);
|
2002-06-27 00:45:49 +02:00
|
|
|
default:
|
2004-12-13 01:44:39 +01:00
|
|
|
log_fn(LOG_WARN,"Bug: got unexpected conn type %d.", conn->type);
|
2005-04-26 20:52:16 +02:00
|
|
|
tor_fragile_assert();
|
2002-06-27 00:45:49 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-12 21:17:09 +02:00
|
|
|
/** Called when our attempt to connect() to another server has just
|
|
|
|
* succeeded.
|
|
|
|
*
|
|
|
|
* This function just passes conn to the connection-specific
|
|
|
|
* connection_*_finished_connecting() function.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
static int
|
|
|
|
connection_finished_connecting(connection_t *conn)
|
2004-05-12 21:17:09 +02:00
|
|
|
{
|
|
|
|
tor_assert(conn);
|
|
|
|
switch (conn->type)
|
|
|
|
{
|
|
|
|
case CONN_TYPE_OR:
|
|
|
|
return connection_or_finished_connecting(conn);
|
|
|
|
case CONN_TYPE_EXIT:
|
|
|
|
return connection_edge_finished_connecting(conn);
|
|
|
|
case CONN_TYPE_DIR:
|
|
|
|
return connection_dir_finished_connecting(conn);
|
|
|
|
default:
|
2004-12-13 01:44:39 +01:00
|
|
|
log_fn(LOG_WARN,"Bug: got unexpected conn type %d.", conn->type);
|
2005-04-26 20:52:16 +02:00
|
|
|
tor_fragile_assert();
|
2004-11-21 11:14:57 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-11 20:52:12 +02:00
|
|
|
/** Callback: invoked when a connection reaches an EOF event. */
|
|
|
|
static int
|
|
|
|
connection_reached_eof(connection_t *conn)
|
2004-11-21 11:14:57 +01:00
|
|
|
{
|
|
|
|
switch (conn->type) {
|
|
|
|
case CONN_TYPE_OR:
|
|
|
|
return connection_or_reached_eof(conn);
|
|
|
|
case CONN_TYPE_AP:
|
|
|
|
case CONN_TYPE_EXIT:
|
|
|
|
return connection_edge_reached_eof(conn);
|
|
|
|
case CONN_TYPE_DIR:
|
|
|
|
return connection_dir_reached_eof(conn);
|
|
|
|
case CONN_TYPE_DNSWORKER:
|
|
|
|
return connection_dns_reached_eof(conn);
|
|
|
|
case CONN_TYPE_CPUWORKER:
|
|
|
|
return connection_cpu_reached_eof(conn);
|
|
|
|
case CONN_TYPE_CONTROL:
|
|
|
|
return connection_control_reached_eof(conn);
|
|
|
|
default:
|
2004-12-13 01:44:39 +01:00
|
|
|
log_fn(LOG_WARN,"Bug: got unexpected conn type %d.", conn->type);
|
2005-04-26 20:52:16 +02:00
|
|
|
tor_fragile_assert();
|
2004-05-12 21:17:09 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-10 03:32:57 +02:00
|
|
|
/** Verify that connection <b>conn</b> has all of its invariants
|
|
|
|
* correct. Trigger an assert if anything is invalid.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
void
|
|
|
|
assert_connection_ok(connection_t *conn, time_t now)
|
2003-09-16 21:36:19 +02:00
|
|
|
{
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn);
|
|
|
|
tor_assert(conn->magic == CONNECTION_MAGIC);
|
|
|
|
tor_assert(conn->type >= _CONN_TYPE_MIN);
|
|
|
|
tor_assert(conn->type <= _CONN_TYPE_MAX);
|
2003-09-16 21:36:19 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (conn->outbuf_flushlen > 0) {
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(connection_is_writing(conn) || conn->wants_to_write);
|
2004-02-27 05:42:14 +01:00
|
|
|
}
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (conn->hold_open_until_flushed)
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn->marked_for_close);
|
2004-03-03 07:26:34 +01:00
|
|
|
|
2003-09-16 21:36:19 +02:00
|
|
|
/* XXX check: wants_to_read, wants_to_write, s, poll_index,
|
|
|
|
* marked_for_close. */
|
2003-12-17 22:09:31 +01:00
|
|
|
|
2003-09-16 21:36:19 +02:00
|
|
|
/* buffers */
|
2003-11-23 19:14:19 +01:00
|
|
|
if (!connection_is_listener(conn)) {
|
2004-03-03 23:49:15 +01:00
|
|
|
assert_buf_ok(conn->inbuf);
|
|
|
|
assert_buf_ok(conn->outbuf);
|
2003-11-23 19:14:19 +01:00
|
|
|
}
|
2003-09-16 21:36:19 +02:00
|
|
|
|
2003-09-25 07:17:11 +02:00
|
|
|
/* XXX Fix this; no longer so.*/
|
|
|
|
#if 0
|
2004-11-28 10:05:49 +01:00
|
|
|
if (conn->type != CONN_TYPE_OR && conn->type != CONN_TYPE_DIR)
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(!conn->pkey);
|
cleanups, bugfixes, more verbose logs
Fixed up the assert_*_ok funcs some (more work remains)
Changed config so it reads either /etc/torrc or the -f arg, never both
Finally tracked down a nasty bug with our use of tls:
It turns out that if you ask SSL_read() for no more than n bytes, it
will read the entire record from the network (and maybe part of the next
record, I'm not sure), give you n bytes of it, and keep the remaining
bytes internally. This is fine, except our poll-for-read looks at the
network, and there are no bytes pending on the network, so we never know
to ask SSL_read() for more bytes. Currently I've hacked it so if we ask
for n bytes and it returns n bytes, then it reads again right then. This
will interact poorly with our rate limiting; we need a cleaner solution.
svn:r481
2003-09-24 23:24:52 +02:00
|
|
|
/* pkey is set if we're a dir client, or if we're an OR in state OPEN
|
|
|
|
* connected to another OR.
|
|
|
|
*/
|
2003-09-25 07:17:11 +02:00
|
|
|
#endif
|
cleanups, bugfixes, more verbose logs
Fixed up the assert_*_ok funcs some (more work remains)
Changed config so it reads either /etc/torrc or the -f arg, never both
Finally tracked down a nasty bug with our use of tls:
It turns out that if you ask SSL_read() for no more than n bytes, it
will read the entire record from the network (and maybe part of the next
record, I'm not sure), give you n bytes of it, and keep the remaining
bytes internally. This is fine, except our poll-for-read looks at the
network, and there are no bytes pending on the network, so we never know
to ask SSL_read() for more bytes. Currently I've hacked it so if we ask
for n bytes and it returns n bytes, then it reads again right then. This
will interact poorly with our rate limiting; we need a cleaner solution.
svn:r481
2003-09-24 23:24:52 +02:00
|
|
|
|
2003-09-16 21:36:19 +02:00
|
|
|
if (conn->type != CONN_TYPE_OR) {
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(!conn->tls);
|
2003-09-16 21:36:19 +02:00
|
|
|
} else {
|
2004-11-28 10:05:49 +01:00
|
|
|
if (conn->state == OR_CONN_STATE_OPEN) {
|
2004-04-25 22:37:37 +02:00
|
|
|
/* tor_assert(conn->bandwidth > 0); */
|
2004-02-28 08:48:28 +01:00
|
|
|
/* the above isn't necessarily true: if we just did a TLS
|
|
|
|
* handshake but we didn't recognize the other peer, or it
|
|
|
|
* gave a bad cert/etc, then we won't have assigned bandwidth,
|
|
|
|
* yet it will be open. -RD
|
|
|
|
*/
|
2005-01-12 11:00:38 +01:00
|
|
|
// tor_assert(conn->receiver_bucket >= 0);
|
2003-09-27 23:09:56 +02:00
|
|
|
}
|
2005-03-23 21:42:37 +01:00
|
|
|
// tor_assert(conn->addr && conn->port);
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn->address);
|
2005-03-23 23:11:59 +01:00
|
|
|
if (conn->state > OR_CONN_STATE_PROXY_READING)
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn->tls);
|
2003-09-16 21:36:19 +02:00
|
|
|
}
|
2003-12-17 22:09:31 +01:00
|
|
|
|
2005-02-24 18:08:27 +01:00
|
|
|
if (! CONN_IS_EDGE(conn)) {
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(!conn->stream_id);
|
|
|
|
tor_assert(!conn->next_stream);
|
|
|
|
tor_assert(!conn->cpath_layer);
|
|
|
|
tor_assert(!conn->package_window);
|
|
|
|
tor_assert(!conn->deliver_window);
|
|
|
|
tor_assert(!conn->done_sending);
|
|
|
|
tor_assert(!conn->done_receiving);
|
2003-09-16 21:36:19 +02:00
|
|
|
} else {
|
2004-02-24 23:33:30 +01:00
|
|
|
/* XXX unchecked: package window, deliver window. */
|
2003-09-16 21:36:19 +02:00
|
|
|
}
|
2004-03-27 06:45:52 +01:00
|
|
|
if (conn->type == CONN_TYPE_AP) {
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn->socks_request);
|
2004-03-27 06:45:52 +01:00
|
|
|
if (conn->state == AP_CONN_STATE_OPEN) {
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn->socks_request->has_finished);
|
2005-03-23 03:52:55 +01:00
|
|
|
if (!conn->marked_for_close) {
|
|
|
|
tor_assert(conn->cpath_layer);
|
|
|
|
assert_cpath_layer_ok(conn->cpath_layer);
|
|
|
|
}
|
2004-03-27 06:45:52 +01:00
|
|
|
}
|
|
|
|
} else {
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(!conn->socks_request);
|
2003-11-11 03:41:31 +01:00
|
|
|
}
|
2004-06-17 20:13:09 +02:00
|
|
|
if (conn->type == CONN_TYPE_EXIT) {
|
|
|
|
tor_assert(conn->purpose == EXIT_PURPOSE_CONNECT ||
|
|
|
|
conn->purpose == EXIT_PURPOSE_RESOLVE);
|
2004-11-28 10:05:49 +01:00
|
|
|
} else if (conn->type != CONN_TYPE_DIR) {
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(!conn->purpose); /* only used for dir types currently */
|
2004-03-31 00:57:49 +02:00
|
|
|
}
|
2003-09-16 21:36:19 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
switch (conn->type)
|
2003-09-16 21:36:19 +02:00
|
|
|
{
|
|
|
|
case CONN_TYPE_OR_LISTENER:
|
|
|
|
case CONN_TYPE_AP_LISTENER:
|
|
|
|
case CONN_TYPE_DIR_LISTENER:
|
2004-11-03 02:32:26 +01:00
|
|
|
case CONN_TYPE_CONTROL_LISTENER:
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn->state == LISTENER_STATE_READY);
|
2003-09-16 21:36:19 +02:00
|
|
|
break;
|
|
|
|
case CONN_TYPE_OR:
|
2004-10-17 00:14:52 +02:00
|
|
|
tor_assert(conn->state >= _OR_CONN_STATE_MIN);
|
|
|
|
tor_assert(conn->state <= _OR_CONN_STATE_MAX);
|
2003-09-16 21:36:19 +02:00
|
|
|
break;
|
|
|
|
case CONN_TYPE_EXIT:
|
2004-10-17 00:14:52 +02:00
|
|
|
tor_assert(conn->state >= _EXIT_CONN_STATE_MIN);
|
|
|
|
tor_assert(conn->state <= _EXIT_CONN_STATE_MAX);
|
2003-09-16 21:36:19 +02:00
|
|
|
break;
|
|
|
|
case CONN_TYPE_AP:
|
2004-10-17 00:14:52 +02:00
|
|
|
tor_assert(conn->state >= _AP_CONN_STATE_MIN);
|
|
|
|
tor_assert(conn->state <= _AP_CONN_STATE_MAX);
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn->socks_request);
|
2003-09-16 21:36:19 +02:00
|
|
|
break;
|
|
|
|
case CONN_TYPE_DIR:
|
2004-10-17 00:14:52 +02:00
|
|
|
tor_assert(conn->state >= _DIR_CONN_STATE_MIN);
|
|
|
|
tor_assert(conn->state <= _DIR_CONN_STATE_MAX);
|
|
|
|
tor_assert(conn->purpose >= _DIR_PURPOSE_MIN);
|
|
|
|
tor_assert(conn->purpose <= _DIR_PURPOSE_MAX);
|
2003-09-16 21:36:19 +02:00
|
|
|
break;
|
|
|
|
case CONN_TYPE_DNSWORKER:
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn->state == DNSWORKER_STATE_IDLE ||
|
|
|
|
conn->state == DNSWORKER_STATE_BUSY);
|
2004-02-24 23:33:30 +01:00
|
|
|
break;
|
2003-09-16 21:36:19 +02:00
|
|
|
case CONN_TYPE_CPUWORKER:
|
2004-10-17 00:14:52 +02:00
|
|
|
tor_assert(conn->state >= _CPUWORKER_STATE_MIN);
|
|
|
|
tor_assert(conn->state <= _CPUWORKER_STATE_MAX);
|
2003-09-16 21:36:19 +02:00
|
|
|
break;
|
2004-11-03 02:32:26 +01:00
|
|
|
case CONN_TYPE_CONTROL:
|
|
|
|
tor_assert(conn->state >= _CONTROL_CONN_STATE_MIN);
|
|
|
|
tor_assert(conn->state <= _CONTROL_CONN_STATE_MAX);
|
|
|
|
break;
|
2003-09-16 21:36:19 +02:00
|
|
|
default:
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(0);
|
2003-09-16 21:36:19 +02:00
|
|
|
}
|
|
|
|
}
|
2005-06-09 21:03:31 +02:00
|
|
|
|