2003-04-12 00:11:11 +02:00
|
|
|
/* Copyright 2001,2002 Roger Dingledine, Matej Pfajfar. */
|
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#include "or.h"
|
|
|
|
|
|
|
|
extern or_options_t options; /* command-line and config-file options */
|
|
|
|
|
|
|
|
int connection_edge_process_inbuf(connection_t *conn) {
|
|
|
|
|
|
|
|
assert(conn);
|
|
|
|
assert(conn->type == CONN_TYPE_AP || conn->type == CONN_TYPE_EXIT);
|
|
|
|
|
|
|
|
if(conn->inbuf_reached_eof) {
|
|
|
|
#ifdef HALF_OPEN
|
|
|
|
/* eof reached; we're done reading, but we might want to write more. */
|
|
|
|
conn->done_receiving = 1;
|
|
|
|
shutdown(conn->s, 0); /* XXX check return, refactor NM */
|
|
|
|
if (conn->done_sending)
|
|
|
|
conn->marked_for_close = 1;
|
|
|
|
|
|
|
|
/* XXX Factor out common logic here and in circuit_about_to_close NM */
|
|
|
|
circ = circuit_get_by_conn(conn);
|
|
|
|
if (!circ)
|
|
|
|
return -1;
|
2003-05-06 01:24:46 +02:00
|
|
|
|
2003-04-12 00:11:11 +02:00
|
|
|
memset(&cell, 0, sizeof(cell_t));
|
2003-05-01 08:42:29 +02:00
|
|
|
cell.command = CELL_RELAY;
|
|
|
|
cell.length = RELAY_HEADER_SIZE;
|
|
|
|
SET_CELL_RELAY_COMMAND(cell, RELAY_COMMAND_END);
|
|
|
|
SET_CELL_STREAM_ID(cell, conn->stream_id);
|
2003-04-12 00:11:11 +02:00
|
|
|
cell.aci = circ->n_aci;
|
2003-04-16 19:44:33 +02:00
|
|
|
|
2003-06-12 12:16:33 +02:00
|
|
|
if (circuit_deliver_relay_cell(&cell, circ, CELL_DIRECTION(conn->type), conn->cpath_layer) < 0) {
|
2003-06-18 00:18:26 +02:00
|
|
|
log(LOG_DEBUG,"circuit_deliver_relay_cell failed. Closing.");
|
2003-04-12 00:11:11 +02:00
|
|
|
circuit_close(circ);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
#else
|
|
|
|
/* eof reached, kill it. */
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"conn reached eof. Closing.");
|
2003-04-12 00:11:11 +02:00
|
|
|
return -1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(conn->state) {
|
|
|
|
case AP_CONN_STATE_SOCKS_WAIT:
|
|
|
|
return ap_handshake_process_socks(conn);
|
|
|
|
case AP_CONN_STATE_OPEN:
|
|
|
|
case EXIT_CONN_STATE_OPEN:
|
|
|
|
if(connection_package_raw_inbuf(conn) < 0)
|
|
|
|
return -1;
|
|
|
|
return 0;
|
|
|
|
case EXIT_CONN_STATE_CONNECTING:
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"text from server while in 'connecting' state at exit. Leaving it on buffer.");
|
2003-04-12 00:11:11 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-06-12 12:16:33 +02:00
|
|
|
int connection_edge_send_command(connection_t *fromconn, circuit_t *circ, int relay_command) {
|
2003-04-12 00:11:11 +02:00
|
|
|
cell_t cell;
|
2003-06-12 12:16:33 +02:00
|
|
|
int cell_direction;
|
2003-04-12 00:11:11 +02:00
|
|
|
|
|
|
|
if(!circ) {
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"no circ. Closing.");
|
2003-04-12 00:11:11 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(&cell, 0, sizeof(cell_t));
|
2003-06-12 12:16:33 +02:00
|
|
|
if(fromconn && fromconn->type == CONN_TYPE_AP) {
|
2003-04-12 00:11:11 +02:00
|
|
|
cell.aci = circ->n_aci;
|
2003-06-12 12:16:33 +02:00
|
|
|
cell_direction = CELL_DIRECTION_OUT;
|
|
|
|
} else {
|
|
|
|
/* NOTE: if !fromconn, we assume that it's heading towards the OP */
|
2003-04-12 00:11:11 +02:00
|
|
|
cell.aci = circ->p_aci;
|
2003-06-12 12:16:33 +02:00
|
|
|
cell_direction = CELL_DIRECTION_IN;
|
|
|
|
}
|
|
|
|
|
2003-05-01 08:42:29 +02:00
|
|
|
cell.command = CELL_RELAY;
|
|
|
|
SET_CELL_RELAY_COMMAND(cell, relay_command);
|
2003-06-12 12:16:33 +02:00
|
|
|
if(fromconn)
|
|
|
|
SET_CELL_STREAM_ID(cell, fromconn->stream_id);
|
|
|
|
else
|
|
|
|
SET_CELL_STREAM_ID(cell, ZERO_STREAM);
|
2003-04-16 19:44:33 +02:00
|
|
|
|
2003-05-01 08:42:29 +02:00
|
|
|
cell.length = RELAY_HEADER_SIZE;
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_INFO,"delivering %d cell %s.", relay_command, cell_direction == CELL_DIRECTION_OUT ? "forward" : "backward");
|
2003-04-12 00:11:11 +02:00
|
|
|
|
2003-06-12 12:16:33 +02:00
|
|
|
if(circuit_deliver_relay_cell(&cell, circ, cell_direction, fromconn ? fromconn->cpath_layer : NULL) < 0) {
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"circuit_deliver_relay_cell failed. Closing.");
|
2003-04-12 00:11:11 +02:00
|
|
|
circuit_close(circ);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-05-20 08:41:23 +02:00
|
|
|
int connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, connection_t *conn,
|
|
|
|
int edge_type, crypt_path_t *layer_hint) {
|
2003-05-01 08:42:29 +02:00
|
|
|
int relay_command;
|
2003-04-12 00:11:11 +02:00
|
|
|
static int num_seen=0;
|
|
|
|
|
2003-05-01 08:42:29 +02:00
|
|
|
/* an incoming relay cell has arrived */
|
2003-04-12 00:11:11 +02:00
|
|
|
|
|
|
|
assert(cell && circ);
|
|
|
|
|
2003-05-01 08:42:29 +02:00
|
|
|
relay_command = CELL_RELAY_COMMAND(*cell);
|
2003-06-18 00:18:26 +02:00
|
|
|
// log_fn(LOG_DEBUG,"command %d stream %d", relay_command, stream_id);
|
2003-04-12 00:11:11 +02:00
|
|
|
num_seen++;
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"Now seen %d relay cells here.", num_seen);
|
2003-04-12 00:11:11 +02:00
|
|
|
|
2003-05-02 23:29:25 +02:00
|
|
|
/* either conn is NULL, in which case we've got a control cell, or else
|
|
|
|
* conn points to the recognized stream. */
|
2003-04-12 00:11:11 +02:00
|
|
|
|
|
|
|
if(conn && conn->state != AP_CONN_STATE_OPEN && conn->state != EXIT_CONN_STATE_OPEN) {
|
2003-05-01 08:42:29 +02:00
|
|
|
if(conn->type == CONN_TYPE_EXIT && relay_command == RELAY_COMMAND_END) {
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_INFO,"Exit got end before we're connected. Marking for close.");
|
2003-04-12 00:11:11 +02:00
|
|
|
conn->marked_for_close = 1;
|
2003-06-27 02:57:04 +02:00
|
|
|
if(conn->state == EXIT_CONN_STATE_RESOLVING) {
|
|
|
|
log_fn(LOG_INFO,"...and informing resolver we don't want the answer anymore.");
|
|
|
|
dns_cancel_pending_resolve(conn->address, conn);
|
|
|
|
}
|
2003-04-12 00:11:11 +02:00
|
|
|
} else {
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"Got an unexpected relay cell, not in 'open' state. Dropping.");
|
2003-04-12 00:11:11 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-05-01 08:42:29 +02:00
|
|
|
switch(relay_command) {
|
|
|
|
case RELAY_COMMAND_BEGIN:
|
2003-04-12 00:11:11 +02:00
|
|
|
if(edge_type == EDGE_AP) {
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_INFO,"relay begin request unsupported. Dropping.");
|
2003-04-12 00:11:11 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2003-05-06 01:24:46 +02:00
|
|
|
if(conn) {
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_INFO,"begin cell for known stream. Dropping.");
|
2003-05-06 01:24:46 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return connection_exit_begin_conn(cell, circ);
|
2003-05-01 08:42:29 +02:00
|
|
|
case RELAY_COMMAND_DATA:
|
2003-05-20 08:41:23 +02:00
|
|
|
if((edge_type == EDGE_AP && --layer_hint->deliver_window < 0) ||
|
|
|
|
(edge_type == EDGE_EXIT && --circ->deliver_window < 0)) {
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"circ deliver_window below 0. Killing.");
|
2003-05-20 08:41:23 +02:00
|
|
|
return -1; /* XXX kill the whole circ? */
|
|
|
|
}
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"circ deliver_window now %d.", edge_type == EDGE_AP ? layer_hint->deliver_window : circ->deliver_window);
|
2003-05-20 08:41:23 +02:00
|
|
|
|
|
|
|
if(circuit_consider_sending_sendme(circ, edge_type, layer_hint) < 0)
|
|
|
|
return -1;
|
|
|
|
|
2003-04-12 00:11:11 +02:00
|
|
|
if(!conn) {
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"relay cell dropped, unknown stream %d.",*(int*)conn->stream_id);
|
2003-04-12 00:11:11 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2003-05-20 08:41:23 +02:00
|
|
|
|
|
|
|
if(--conn->deliver_window < 0) { /* is it below 0 after decrement? */
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"conn deliver_window below 0. Killing.");
|
2003-04-12 00:11:11 +02:00
|
|
|
return -1; /* somebody's breaking protocol. kill the whole circuit. */
|
|
|
|
}
|
|
|
|
|
2003-05-01 08:42:29 +02:00
|
|
|
if(connection_write_to_buf(cell->payload + RELAY_HEADER_SIZE,
|
|
|
|
cell->length - RELAY_HEADER_SIZE, conn) < 0) {
|
2003-04-12 00:11:11 +02:00
|
|
|
conn->marked_for_close = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(connection_consider_sending_sendme(conn, edge_type) < 0)
|
|
|
|
conn->marked_for_close = 1;
|
|
|
|
return 0;
|
2003-05-01 08:42:29 +02:00
|
|
|
case RELAY_COMMAND_END:
|
2003-04-12 00:11:11 +02:00
|
|
|
if(!conn) {
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"end cell dropped, unknown stream %d.",*(int*)conn->stream_id);
|
2003-04-12 00:11:11 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"end cell for stream %d. Removing stream.",*(int*)conn->stream_id);
|
2003-04-12 00:11:11 +02:00
|
|
|
|
|
|
|
#ifdef HALF_OPEN
|
|
|
|
conn->done_sending = 1;
|
|
|
|
shutdown(conn->s, 1); /* XXX check return; refactor NM */
|
|
|
|
if (conn->done_receiving)
|
|
|
|
conn->marked_for_close = 1;
|
|
|
|
#endif
|
|
|
|
conn->marked_for_close = 1;
|
|
|
|
break;
|
2003-05-06 01:24:46 +02:00
|
|
|
case RELAY_COMMAND_EXTEND:
|
|
|
|
if(conn) {
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_INFO,"'extend' for non-zero stream. Dropping.");
|
2003-05-06 01:24:46 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return circuit_extend(cell, circ);
|
|
|
|
case RELAY_COMMAND_EXTENDED:
|
|
|
|
if(edge_type == EDGE_EXIT) {
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_INFO,"'extended' unsupported at exit. Dropping.");
|
2003-05-06 01:24:46 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"Got an extended cell! Yay.");
|
2003-05-06 01:24:46 +02:00
|
|
|
if(circuit_finish_handshake(circ, cell->payload+RELAY_HEADER_SIZE) < 0) {
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_INFO,"circuit_finish_handshake failed.");
|
2003-05-06 01:24:46 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return circuit_send_next_onion_skin(circ);
|
2003-06-12 12:16:33 +02:00
|
|
|
case RELAY_COMMAND_TRUNCATE:
|
|
|
|
if(edge_type == EDGE_AP) {
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_INFO,"'truncate' unsupported at AP. Dropping.");
|
2003-06-12 12:16:33 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(circ->n_conn) {
|
|
|
|
connection_send_destroy(circ->n_aci, circ->n_conn);
|
|
|
|
circ->n_conn = NULL;
|
|
|
|
}
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG, "Processed 'truncate', replying.");
|
2003-06-12 12:16:33 +02:00
|
|
|
return connection_edge_send_command(NULL, circ, RELAY_COMMAND_TRUNCATED);
|
|
|
|
case RELAY_COMMAND_TRUNCATED:
|
|
|
|
if(edge_type == EDGE_EXIT) {
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_INFO,"'truncated' unsupported at exit. Dropping.");
|
2003-06-12 12:16:33 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return circuit_truncated(circ, layer_hint);
|
2003-05-01 08:42:29 +02:00
|
|
|
case RELAY_COMMAND_CONNECTED:
|
2003-04-12 00:11:11 +02:00
|
|
|
if(edge_type == EDGE_EXIT) {
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_INFO,"'connected' unsupported at exit. Dropping.");
|
2003-04-12 00:11:11 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(!conn) {
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"connected cell dropped, unknown stream %d.",*(int*)conn->stream_id);
|
2003-04-12 00:11:11 +02:00
|
|
|
break;
|
|
|
|
}
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"Connected! Notifying application.");
|
2003-04-12 00:11:11 +02:00
|
|
|
if(ap_handshake_socks_reply(conn, SOCKS4_REQUEST_GRANTED) < 0) {
|
|
|
|
conn->marked_for_close = 1;
|
|
|
|
}
|
|
|
|
break;
|
2003-05-01 08:42:29 +02:00
|
|
|
case RELAY_COMMAND_SENDME:
|
2003-04-12 00:11:11 +02:00
|
|
|
if(!conn) {
|
2003-05-20 08:41:23 +02:00
|
|
|
if(edge_type == EDGE_AP) {
|
|
|
|
assert(layer_hint);
|
|
|
|
layer_hint->package_window += CIRCWINDOW_INCREMENT;
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"circ-level sendme at AP, packagewindow %d.", layer_hint->package_window);
|
2003-05-20 08:41:23 +02:00
|
|
|
circuit_resume_edge_reading(circ, EDGE_AP, layer_hint);
|
|
|
|
} else {
|
|
|
|
assert(!layer_hint);
|
|
|
|
circ->package_window += CIRCWINDOW_INCREMENT;
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"circ-level sendme at exit, packagewindow %d.", circ->package_window);
|
2003-05-20 08:41:23 +02:00
|
|
|
circuit_resume_edge_reading(circ, EDGE_EXIT, layer_hint);
|
|
|
|
}
|
2003-04-12 00:11:11 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2003-05-20 08:41:23 +02:00
|
|
|
conn->package_window += STREAMWINDOW_INCREMENT;
|
2003-07-03 05:40:47 +02:00
|
|
|
log_fn(LOG_DEBUG,"stream-level sendme, packagewindow now %d.", conn->package_window);
|
2003-04-12 00:11:11 +02:00
|
|
|
connection_start_reading(conn);
|
2003-07-03 05:40:47 +02:00
|
|
|
connection_package_raw_inbuf(conn); /* handle whatever might still be on the inbuf */
|
2003-04-12 00:11:11 +02:00
|
|
|
break;
|
|
|
|
default:
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"unknown relay command %d.",relay_command);
|
2003-04-12 00:11:11 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int connection_edge_finished_flushing(connection_t *conn) {
|
|
|
|
int e, len=sizeof(e);
|
|
|
|
|
|
|
|
assert(conn);
|
|
|
|
assert(conn->type == CONN_TYPE_AP || conn->type == CONN_TYPE_EXIT);
|
|
|
|
|
|
|
|
switch(conn->state) {
|
|
|
|
case EXIT_CONN_STATE_CONNECTING:
|
2003-08-12 05:08:41 +02:00
|
|
|
if (getsockopt(conn->s, SOL_SOCKET, SO_ERROR, (void*)&e, &len) < 0) { /* not yet */
|
2003-04-12 00:11:11 +02:00
|
|
|
if(errno != EINPROGRESS){
|
|
|
|
/* yuck. kill it. */
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"in-progress exit connect failed. Removing.");
|
2003-04-12 00:11:11 +02:00
|
|
|
return -1;
|
|
|
|
} else {
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"in-progress exit connect still waiting.");
|
2003-04-12 00:11:11 +02:00
|
|
|
return 0; /* no change, see if next time is better */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* the connect has finished. */
|
|
|
|
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"Exit connection to %s:%u established.",
|
2003-04-12 00:11:11 +02:00
|
|
|
conn->address,conn->port);
|
|
|
|
|
|
|
|
conn->state = EXIT_CONN_STATE_OPEN;
|
|
|
|
connection_watch_events(conn, POLLIN); /* stop writing, continue reading */
|
2003-05-01 08:42:29 +02:00
|
|
|
if(connection_wants_to_flush(conn)) /* in case there are any queued relay cells */
|
2003-04-12 00:11:11 +02:00
|
|
|
connection_start_writing(conn);
|
|
|
|
return
|
2003-05-01 08:42:29 +02:00
|
|
|
connection_edge_send_command(conn, circuit_get_by_conn(conn), RELAY_COMMAND_CONNECTED) || /* deliver a 'connected' relay cell back through the circuit. */
|
2003-04-12 00:11:11 +02:00
|
|
|
connection_process_inbuf(conn); /* in case the server has written anything */
|
|
|
|
case AP_CONN_STATE_OPEN:
|
|
|
|
case EXIT_CONN_STATE_OPEN:
|
|
|
|
connection_stop_writing(conn);
|
|
|
|
return connection_consider_sending_sendme(conn, conn->type);
|
|
|
|
default:
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG,"BUG: called in unexpected state.");
|
2003-04-12 00:11:11 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Local Variables:
|
|
|
|
mode:c
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
c-basic-offset:2
|
|
|
|
End:
|
|
|
|
*/
|