summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2007-11-08 16:19:07 +0000
committerNick Mathewson <nickm@torproject.org>2007-11-08 16:19:07 +0000
commitc3a745951b881c159289a964370c6e7b2f31671c (patch)
tree5adf84e08baba139e908b9854337d627099b0b69 /src
parent17a34e4a43e6d9c3d95b48dbd7675b4a3bfc90ac (diff)
downloadtor-c3a745951b881c159289a964370c6e7b2f31671c.tar.gz
tor-c3a745951b881c159289a964370c6e7b2f31671c.zip
r16570@catbus: nickm | 2007-11-08 11:04:20 -0500
Keep track, for each OR connection, of the last time we added a non-padding cell to its outbuf. Use this timestamp, not "lastwritten" to tell if it is time to close a circuitless connection. (We can'tuse lastwritten, since lastwritten is updated when ever the connection flushes anything, and by that point we can no longer tell what is a padding cell and what is not.) svn:r12437
Diffstat (limited to 'src')
-rw-r--r--src/or/connection.c4
-rw-r--r--src/or/connection_or.c5
-rw-r--r--src/or/main.c3
-rw-r--r--src/or/or.h2
4 files changed, 12 insertions, 2 deletions
diff --git a/src/or/connection.c b/src/or/connection.c
index 0dd2f9e43d..24fd567de0 100644
--- a/src/or/connection.c
+++ b/src/or/connection.c
@@ -209,8 +209,10 @@ connection_new(int type, int socket_family)
if (CONN_IS_EDGE(conn)) {
TO_EDGE_CONN(conn)->global_identifier = n_connections_allocated++;
}
- if (type == CONN_TYPE_OR)
+ if (type == CONN_TYPE_OR) {
+ TO_OR_CONN(conn)->timestamp_last_added_nonpadding = now;
TO_OR_CONN(conn)->next_circ_id = crypto_rand_int(1<<15);
+ }
conn->timestamp_created = now;
conn->timestamp_lastread = now;
diff --git a/src/or/connection_or.c b/src/or/connection_or.c
index 6e649bee2e..fb29fa5870 100644
--- a/src/or/connection_or.c
+++ b/src/or/connection_or.c
@@ -855,6 +855,9 @@ connection_or_write_cell_to_buf(const cell_t *cell, or_connection_t *conn)
cell_pack(&networkcell, cell);
connection_write_to_buf(networkcell.body, CELL_NETWORK_SIZE, TO_CONN(conn));
+
+ if (cell->command != CELL_PADDING)
+ conn->timestamp_last_added_nonpadding = time(NULL);
}
/**DOCDOC*/
@@ -868,6 +871,8 @@ connection_or_write_var_cell_to_buf(const var_cell_t *cell,
var_cell_pack_header(cell, hdr);
connection_write_to_buf(hdr, sizeof(hdr), TO_CONN(conn));
connection_write_to_buf(cell->payload, cell->payload_len, TO_CONN(conn));
+ if (cell->command != CELL_PADDING)
+ conn->timestamp_last_added_nonpadding = time(NULL);
}
/** DOCDOC */
diff --git a/src/or/main.c b/src/or/main.c
index b7787f7ef2..0f628fa226 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -780,7 +780,8 @@ run_connection_housekeeping(int i, time_t now)
connection_mark_for_close(conn);
conn->hold_open_until_flushed = 1;
} else if (!clique_mode(options) && !or_conn->n_circuits &&
- now >= conn->timestamp_lastwritten + maxCircuitlessPeriod &&
+ now >= or_conn->timestamp_last_added_nonpadding +
+ maxCircuitlessPeriod &&
(!router || !server_mode(options) ||
!router_is_clique_mode(router))) {
log_info(LD_OR,"Expiring non-used OR connection to fd %d (%s:%d) "
diff --git a/src/or/or.h b/src/or/or.h
index e7838eacad..93eb639d67 100644
--- a/src/or/or.h
+++ b/src/or/or.h
@@ -926,6 +926,8 @@ typedef struct or_connection_t {
or_handshake_state_t *handshake_state;/**< DOCDOC */
time_t timestamp_lastempty; /**< When was the outbuf last completely empty?*/
+ time_t timestamp_last_added_nonpadding; /** When did we last add a
+ * non-padding cell to the outbuf? */
/* bandwidth* and read_bucket only used by ORs in OPEN state: */
int bandwidthrate; /**< Bytes/s added to the bucket. (OPEN ORs only.) */