aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2003-11-17 07:20:51 +0000
committerRoger Dingledine <arma@torproject.org>2003-11-17 07:20:51 +0000
commite5d6e7db1aaa16d25a87f30618d762d2838f0240 (patch)
tree90272df898ba93b6507eeec323779772cc0b358c /src
parentac5fc456ee252bd0e5eb276de999694cab2999f6 (diff)
downloadtor-e5d6e7db1aaa16d25a87f30618d762d2838f0240.tar
tor-e5d6e7db1aaa16d25a87f30618d762d2838f0240.tar.gz
continue the circuit_deliver_relay_cell forward-failure bughunt
svn:r823
Diffstat (limited to 'src')
-rw-r--r--src/or/circuit.c2
-rw-r--r--src/or/connection_edge.c26
2 files changed, 17 insertions, 11 deletions
diff --git a/src/or/circuit.c b/src/or/circuit.c
index 3af253781..12101ab1e 100644
--- a/src/or/circuit.c
+++ b/src/or/circuit.c
@@ -602,8 +602,6 @@ void circuit_about_to_close_connection(connection_t *conn) {
} /* end switch */
}
-
-/* FIXME this now leaves some out */
void circuit_dump_by_conn(connection_t *conn, int severity) {
circuit_t *circ;
connection_t *tmpconn;
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c
index 4f1bdafa1..69216eae7 100644
--- a/src/or/connection_edge.c
+++ b/src/or/connection_edge.c
@@ -206,7 +206,8 @@ int connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, connection
log_fn(LOG_WARN,"begin cell for known stream. Dropping.");
return 0;
}
- return connection_exit_begin_conn(cell, circ);
+ connection_exit_begin_conn(cell, circ);
+ return 0;
case RELAY_COMMAND_DATA:
++stats_n_data_cells_received;
if((edge_type == EDGE_AP && --layer_hint->deliver_window < 0) ||
@@ -218,6 +219,7 @@ int connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, connection
log_fn(LOG_DEBUG,"circ deliver_window now %d.", edge_type == EDGE_AP ? layer_hint->deliver_window : circ->deliver_window);
if(circuit_consider_sending_sendme(circ, edge_type, layer_hint) < 0) {
+ log_fn(LOG_WARN,"circuit_consider_sending_sendme() failed.");
conn->has_sent_end = 1; /* we failed because conn is broken. can't send end. */
return -1;
}
@@ -235,7 +237,7 @@ int connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, connection
// printf("New text for buf (%d bytes): '%s'", cell->length - RELAY_HEADER_SIZE, cell->payload + RELAY_HEADER_SIZE);
stats_n_data_bytes_received += (cell->length - RELAY_HEADER_SIZE);
connection_write_to_buf(cell->payload + RELAY_HEADER_SIZE,
- cell->length - RELAY_HEADER_SIZE, conn);
+ cell->length - RELAY_HEADER_SIZE, conn);
connection_edge_consider_sending_sendme(conn);
return 0;
case RELAY_COMMAND_END:
@@ -273,7 +275,7 @@ int connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, connection
conn->marked_for_close = 1;
conn->has_sent_end = 1; /* no need to send end, we just got one! */
#endif
- break;
+ return 0;
case RELAY_COMMAND_EXTEND:
if(conn) {
log_fn(LOG_WARN,"'extend' for non-zero stream. Dropping.");
@@ -290,7 +292,11 @@ int connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, connection
log_fn(LOG_WARN,"circuit_finish_handshake failed.");
return -1;
}
- return circuit_send_next_onion_skin(circ);
+ if (circuit_send_next_onion_skin(circ)<0) {
+ log_fn(LOG_WARN,"circuit_send_next_onion_skin() failed.");
+ return -1;
+ }
+ return 0;
case RELAY_COMMAND_TRUNCATE:
if(edge_type == EDGE_AP) {
log_fn(LOG_WARN,"'truncate' unsupported at AP. Dropping.");
@@ -309,7 +315,8 @@ int connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, connection
log_fn(LOG_WARN,"'truncated' unsupported at exit. Dropping.");
return 0;
}
- return circuit_truncated(circ, layer_hint);
+ circuit_truncated(circ, layer_hint);
+ return 0;
case RELAY_COMMAND_CONNECTED:
if(edge_type == EDGE_EXIT) {
log_fn(LOG_WARN,"'connected' unsupported at exit. Dropping.");
@@ -317,7 +324,7 @@ int connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, connection
}
if(!conn) {
log_fn(LOG_INFO,"connected cell dropped, unknown stream %d.",*(int*)conn->stream_id);
- break;
+ return 0;
}
log_fn(LOG_INFO,"Connected! Notifying application.");
if (cell->length-RELAY_HEADER_SIZE == 4) {
@@ -328,7 +335,7 @@ int connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, connection
log_fn(LOG_INFO,"Writing to socks-speaking application failed. Closing.");
connection_edge_end(conn, END_STREAM_REASON_MISC, conn->cpath_layer);
}
- break;
+ return 0;
case RELAY_COMMAND_SENDME:
if(!conn) {
if(edge_type == EDGE_AP) {
@@ -348,12 +355,13 @@ int connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, connection
log_fn(LOG_DEBUG,"stream-level sendme, packagewindow now %d.", conn->package_window);
connection_start_reading(conn);
connection_edge_package_raw_inbuf(conn); /* handle whatever might still be on the inbuf */
- break;
+ return 0;
default:
log_fn(LOG_WARN,"unknown relay command %d.",relay_command);
return -1;
}
- return 0;
+ assert(0);
+ return -1;
}
int connection_edge_finished_flushing(connection_t *conn) {