[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] continue the circuit_deliver_relay_cell forward-failure bug...
- To: or-cvs@freehaven.net
- Subject: [or-cvs] continue the circuit_deliver_relay_cell forward-failure bug...
- From: arma@seul.org (Roger Dingledine)
- Date: Mon, 17 Nov 2003 02:20:53 -0500 (EST)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Mon, 17 Nov 2003 02:21:13 -0500
- Reply-to: or-dev@freehaven.net
- Sender: owner-or-cvs@freehaven.net
Update of /home/or/cvsroot/src/or
In directory moria.mit.edu:/home2/arma/work/onion/cvs/src/or
Modified Files:
circuit.c connection_edge.c
Log Message:
continue the circuit_deliver_relay_cell forward-failure bughunt
Index: circuit.c
===================================================================
RCS file: /home/or/cvsroot/src/or/circuit.c,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -d -r1.97 -r1.98
--- circuit.c 17 Nov 2003 01:23:15 -0000 1.97
+++ circuit.c 17 Nov 2003 07:20:51 -0000 1.98
@@ -602,8 +602,6 @@
} /* end switch */
}
-
-/* FIXME this now leaves some out */
void circuit_dump_by_conn(connection_t *conn, int severity) {
circuit_t *circ;
connection_t *tmpconn;
Index: connection_edge.c
===================================================================
RCS file: /home/or/cvsroot/src/or/connection_edge.c,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -d -r1.60 -r1.61
--- connection_edge.c 17 Nov 2003 01:20:35 -0000 1.60
+++ connection_edge.c 17 Nov 2003 07:20:51 -0000 1.61
@@ -206,7 +206,8 @@
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 @@
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 @@
// 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 @@
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 @@
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 @@
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 @@
}
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 @@
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 @@
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) {