2003-10-08 04:04:08 +02:00
|
|
|
/* Copyright 2001,2002,2003 Roger Dingledine, Matej Pfajfar. */
|
2003-04-12 00:11:11 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#include "or.h"
|
2003-11-14 21:45:47 +01:00
|
|
|
#include "tree.h"
|
2003-04-12 00:11:11 +02:00
|
|
|
|
|
|
|
extern or_options_t options; /* command-line and config-file options */
|
|
|
|
|
2003-09-13 00:45:31 +02:00
|
|
|
static int connection_ap_handshake_process_socks(connection_t *conn);
|
2003-11-11 03:41:31 +01:00
|
|
|
static int connection_ap_handshake_attach_circuit(connection_t *conn);
|
2003-11-12 05:24:04 +01:00
|
|
|
static void connection_ap_handshake_send_begin(connection_t *ap_conn, circuit_t *circ);
|
2003-10-04 03:37:01 +02:00
|
|
|
static int connection_ap_handshake_socks_reply(connection_t *conn, char *reply,
|
|
|
|
int replylen, char success);
|
2003-09-13 00:45:31 +02:00
|
|
|
|
|
|
|
static int connection_exit_begin_conn(cell_t *cell, circuit_t *circ);
|
2003-10-22 11:08:10 +02:00
|
|
|
static void connection_edge_consider_sending_sendme(connection_t *conn);
|
2003-09-13 00:45:31 +02:00
|
|
|
|
2003-11-14 21:45:47 +01:00
|
|
|
static uint32_t client_dns_lookup_entry(const char *address);
|
|
|
|
static void client_dns_set_entry(const char *address, uint32_t val);
|
|
|
|
|
2003-04-12 00:11:11 +02:00
|
|
|
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 */
|
2003-10-21 10:37:07 +02:00
|
|
|
if (conn->done_sending) {
|
2003-10-22 09:55:44 +02:00
|
|
|
connection_edge_end(conn, END_STREAM_REASON_DONE, conn->cpath_layer);
|
2003-10-21 10:37:07 +02:00
|
|
|
} else {
|
|
|
|
connection_edge_send_command(conn, circuit_get_by_conn(conn), RELAY_COMMAND_END,
|
|
|
|
NULL, 0, conn->cpath_layer);
|
|
|
|
}
|
2003-04-12 00:11:11 +02:00
|
|
|
return 0;
|
|
|
|
#else
|
|
|
|
/* eof reached, kill it. */
|
2003-09-26 12:03:50 +02:00
|
|
|
log_fn(LOG_INFO,"conn (fd %d) reached eof. Closing.", conn->s);
|
2003-10-22 09:55:44 +02:00
|
|
|
connection_edge_end(conn, END_STREAM_REASON_DONE, conn->cpath_layer);
|
2003-10-21 10:37:07 +02:00
|
|
|
return -1;
|
2003-04-12 00:11:11 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(conn->state) {
|
|
|
|
case AP_CONN_STATE_SOCKS_WAIT:
|
2003-10-21 10:37:07 +02:00
|
|
|
if(connection_ap_handshake_process_socks(conn) < 0) {
|
2003-10-22 09:55:44 +02:00
|
|
|
connection_edge_end(conn, END_STREAM_REASON_MISC, conn->cpath_layer);
|
2003-10-21 10:37:07 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
2003-04-12 00:11:11 +02:00
|
|
|
case AP_CONN_STATE_OPEN:
|
|
|
|
case EXIT_CONN_STATE_OPEN:
|
2003-10-21 10:37:07 +02:00
|
|
|
if(connection_edge_package_raw_inbuf(conn) < 0) {
|
2003-10-22 09:55:44 +02:00
|
|
|
connection_edge_end(conn, END_STREAM_REASON_MISC, conn->cpath_layer);
|
2003-10-21 10:37:07 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2003-04-12 00:11:11 +02:00
|
|
|
return 0;
|
|
|
|
case EXIT_CONN_STATE_CONNECTING:
|
2003-09-26 12:03:50 +02:00
|
|
|
log_fn(LOG_INFO,"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-10-22 09:55:44 +02:00
|
|
|
char *connection_edge_end_reason(char *payload, unsigned char length) {
|
|
|
|
if(length < 1) {
|
|
|
|
log_fn(LOG_WARN,"End cell arrived with length 0. Should be at least 1.");
|
|
|
|
return "MALFORMED";
|
|
|
|
}
|
|
|
|
if(*payload < END_STREAM_REASON_MISC || *payload > END_STREAM_REASON_DONE) {
|
|
|
|
log_fn(LOG_WARN,"Reason for ending (%d) not recognized.",*payload);
|
|
|
|
return "MALFORMED";
|
|
|
|
}
|
|
|
|
switch(*payload) {
|
|
|
|
case END_STREAM_REASON_MISC: return "misc error";
|
|
|
|
case END_STREAM_REASON_RESOLVEFAILED: return "resolve failed";
|
|
|
|
case END_STREAM_REASON_CONNECTFAILED: return "connect failed";
|
|
|
|
case END_STREAM_REASON_EXITPOLICY: return "exit policy failed";
|
|
|
|
case END_STREAM_REASON_DESTROY: return "destroyed";
|
|
|
|
case END_STREAM_REASON_DONE: return "closed normally";
|
|
|
|
}
|
|
|
|
assert(0);
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
void connection_edge_end(connection_t *conn, char reason, crypt_path_t *cpath_layer) {
|
|
|
|
char payload[5];
|
|
|
|
int payload_len=1;
|
|
|
|
circuit_t *circ;
|
2003-10-21 10:37:07 +02:00
|
|
|
|
|
|
|
if(conn->has_sent_end) {
|
|
|
|
log_fn(LOG_WARN,"It appears I've already sent the end. Are you calling me twice?");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-10-22 09:55:44 +02:00
|
|
|
payload[0] = reason;
|
|
|
|
if(reason == END_STREAM_REASON_EXITPOLICY) {
|
|
|
|
*(uint32_t *)(payload+1) = htonl(conn->addr);
|
2003-11-16 18:00:02 +01:00
|
|
|
payload_len += 4;
|
2003-10-22 09:55:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
circ = circuit_get_by_conn(conn);
|
2003-10-21 10:37:07 +02:00
|
|
|
if(circ) {
|
|
|
|
log_fn(LOG_DEBUG,"Marking conn (fd %d) and sending end.",conn->s);
|
|
|
|
connection_edge_send_command(conn, circ, RELAY_COMMAND_END,
|
|
|
|
payload, payload_len, cpath_layer);
|
|
|
|
}
|
|
|
|
|
|
|
|
conn->marked_for_close = 1;
|
|
|
|
conn->has_sent_end = 1;
|
|
|
|
}
|
|
|
|
|
2003-10-22 11:08:10 +02:00
|
|
|
int connection_edge_send_command(connection_t *fromconn, circuit_t *circ, int relay_command,
|
|
|
|
void *payload, int payload_len, crypt_path_t *cpath_layer) {
|
2003-04-12 00:11:11 +02:00
|
|
|
cell_t cell;
|
2003-06-12 12:16:33 +02:00
|
|
|
int cell_direction;
|
2003-10-04 10:19:23 +02:00
|
|
|
int is_control_cell=0;
|
2003-04-12 00:11:11 +02:00
|
|
|
|
|
|
|
if(!circ) {
|
2003-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"no circ. Closing.");
|
2003-10-22 11:08:10 +02:00
|
|
|
return 0;
|
2003-04-12 00:11:11 +02:00
|
|
|
}
|
|
|
|
|
2003-10-04 10:19:23 +02:00
|
|
|
if(!fromconn || relay_command == RELAY_COMMAND_BEGIN) /* XXX more */
|
|
|
|
is_control_cell = 1;
|
|
|
|
|
2003-04-12 00:11:11 +02:00
|
|
|
memset(&cell, 0, sizeof(cell_t));
|
2003-06-12 12:16:33 +02:00
|
|
|
if(fromconn && fromconn->type == CONN_TYPE_AP) {
|
2003-11-11 04:01:48 +01:00
|
|
|
cell.circ_id = circ->n_circ_id;
|
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-11-11 04:01:48 +01:00
|
|
|
cell.circ_id = circ->p_circ_id;
|
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-10-04 10:19:23 +02:00
|
|
|
if(is_control_cell)
|
2003-06-12 12:16:33 +02:00
|
|
|
SET_CELL_STREAM_ID(cell, ZERO_STREAM);
|
2003-10-04 10:19:23 +02:00
|
|
|
else
|
|
|
|
SET_CELL_STREAM_ID(cell, fromconn->stream_id);
|
2003-04-16 19:44:33 +02:00
|
|
|
|
2003-10-04 10:19:23 +02:00
|
|
|
cell.length = RELAY_HEADER_SIZE + payload_len;
|
|
|
|
if(payload_len) {
|
|
|
|
memcpy(cell.payload+RELAY_HEADER_SIZE,payload,payload_len);
|
|
|
|
}
|
2003-10-08 06:10:59 +02:00
|
|
|
log_fn(LOG_DEBUG,"delivering %d cell %s.", relay_command,
|
2003-10-04 10:19:23 +02:00
|
|
|
cell_direction == CELL_DIRECTION_OUT ? "forward" : "backward");
|
2003-04-12 00:11:11 +02:00
|
|
|
|
2003-10-04 10:19:23 +02:00
|
|
|
if(circuit_deliver_relay_cell(&cell, circ, cell_direction, cpath_layer) < 0) {
|
2003-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"circuit_deliver_relay_cell failed. Closing.");
|
2003-04-12 00:11:11 +02:00
|
|
|
circuit_close(circ);
|
2003-10-22 11:08:10 +02:00
|
|
|
return -1;
|
2003-04-12 00:11:11 +02:00
|
|
|
}
|
2003-10-22 11:08:10 +02:00
|
|
|
return 0;
|
2003-04-12 00:11:11 +02:00
|
|
|
}
|
|
|
|
|
2003-09-14 10:17:14 +02:00
|
|
|
/* an incoming relay cell has arrived. return -1 if you want to tear down the
|
|
|
|
* circuit, else 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-11-14 21:45:47 +01:00
|
|
|
uint32_t addr;
|
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-10-22 09:55:44 +02:00
|
|
|
log_fn(LOG_INFO,"Exit got end (%s) before we're connected. Marking for close.",
|
|
|
|
connection_edge_end_reason(cell->payload+RELAY_HEADER_SIZE, cell->length));
|
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-10-22 09:55:44 +02:00
|
|
|
conn->marked_for_close = 1;
|
|
|
|
conn->has_sent_end = 1;
|
2003-09-27 23:09:56 +02:00
|
|
|
return 0;
|
2003-04-12 00:11:11 +02:00
|
|
|
} else {
|
2003-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"Got an unexpected relay cell, not in 'open' state. Closing.");
|
2003-10-22 09:55:44 +02:00
|
|
|
connection_edge_end(conn, END_STREAM_REASON_MISC, conn->cpath_layer);
|
2003-09-27 23:09:56 +02:00
|
|
|
return -1;
|
2003-04-12 00:11:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"relay begin request unsupported at AP. Dropping.");
|
2003-04-12 00:11:11 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2003-05-06 01:24:46 +02:00
|
|
|
if(conn) {
|
2003-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"begin cell for known stream. Dropping.");
|
2003-05-06 01:24:46 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2003-11-17 08:20:51 +01:00
|
|
|
connection_exit_begin_conn(cell, circ);
|
|
|
|
return 0;
|
2003-05-01 08:42:29 +02:00
|
|
|
case RELAY_COMMAND_DATA:
|
2003-10-02 22:00:38 +02:00
|
|
|
++stats_n_data_cells_received;
|
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-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"(relay data) circ deliver_window below 0. Killing.");
|
2003-10-22 09:55:44 +02:00
|
|
|
connection_edge_end(conn, END_STREAM_REASON_MISC, conn->cpath_layer);
|
2003-09-14 10:17:14 +02:00
|
|
|
return -1;
|
2003-05-20 08:41:23 +02:00
|
|
|
}
|
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
|
|
|
|
2003-10-21 10:37:07 +02:00
|
|
|
if(circuit_consider_sending_sendme(circ, edge_type, layer_hint) < 0) {
|
2003-11-17 08:20:51 +01:00
|
|
|
log_fn(LOG_WARN,"circuit_consider_sending_sendme() failed.");
|
2003-10-21 10:37:07 +02:00
|
|
|
conn->has_sent_end = 1; /* we failed because conn is broken. can't send end. */
|
2003-05-20 08:41:23 +02:00
|
|
|
return -1;
|
2003-10-21 10:37:07 +02:00
|
|
|
}
|
2003-05-20 08:41:23 +02:00
|
|
|
|
2003-04-12 00:11:11 +02:00
|
|
|
if(!conn) {
|
2003-09-26 12:03:50 +02:00
|
|
|
log_fn(LOG_INFO,"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-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"(relay data) 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-09-14 10:17:14 +02:00
|
|
|
// printf("New text for buf (%d bytes): '%s'", cell->length - RELAY_HEADER_SIZE, cell->payload + RELAY_HEADER_SIZE);
|
2003-10-02 22:00:38 +02:00
|
|
|
stats_n_data_bytes_received += (cell->length - RELAY_HEADER_SIZE);
|
2003-10-04 04:38:18 +02:00
|
|
|
connection_write_to_buf(cell->payload + RELAY_HEADER_SIZE,
|
2003-11-17 08:20:51 +01:00
|
|
|
cell->length - RELAY_HEADER_SIZE, conn);
|
2003-10-22 11:08:10 +02:00
|
|
|
connection_edge_consider_sending_sendme(conn);
|
2003-04-12 00:11:11 +02:00
|
|
|
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-10-22 09:55:44 +02:00
|
|
|
log_fn(LOG_INFO,"end cell (%s) dropped, unknown stream %d.",
|
|
|
|
connection_edge_end_reason(cell->payload+RELAY_HEADER_SIZE, cell->length),
|
|
|
|
*(int*)conn->stream_id);
|
2003-04-12 00:11:11 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2003-11-14 21:45:47 +01:00
|
|
|
if(cell->length-RELAY_HEADER_SIZE >= 5 &&
|
|
|
|
*(cell->payload+RELAY_HEADER_SIZE) == END_STREAM_REASON_EXITPOLICY) {
|
2003-10-22 09:55:44 +02:00
|
|
|
/* No need to close the connection. We'll hold it open while
|
|
|
|
* we try a new exit node.
|
2003-11-16 18:00:02 +01:00
|
|
|
* cell->payload+RELAY_HEADER_SIZE+1 holds the destination addr.
|
2003-10-22 09:55:44 +02:00
|
|
|
*/
|
2003-11-23 19:16:06 +01:00
|
|
|
addr = ntohl(*(uint32_t*)(cell->payload+RELAY_HEADER_SIZE+1));
|
2003-11-16 18:00:02 +01:00
|
|
|
client_dns_set_entry(conn->socks_request->address, addr);
|
2003-11-16 06:33:45 +01:00
|
|
|
conn->state = AP_CONN_STATE_CIRCUIT_WAIT;
|
2003-11-16 22:49:52 +01:00
|
|
|
if(connection_ap_handshake_attach_circuit(conn) < 0)
|
2003-11-19 03:22:52 +01:00
|
|
|
circuit_launch_new(); /* Build another circuit to handle this stream */
|
2003-11-16 06:33:45 +01:00
|
|
|
return 0;
|
2003-10-22 09:55:44 +02:00
|
|
|
}
|
2003-11-14 21:45:47 +01:00
|
|
|
log_fn(LOG_INFO,"end cell (%s) for stream %d. Removing stream.",
|
|
|
|
connection_edge_end_reason(cell->payload+RELAY_HEADER_SIZE, cell->length),
|
|
|
|
*(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 */
|
2003-10-21 10:37:07 +02:00
|
|
|
if (conn->done_receiving) {
|
|
|
|
conn->marked_for_close = 1;
|
|
|
|
conn->has_sent_end = 1; /* no need to send end, we just got one! */
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
conn->marked_for_close = 1;
|
|
|
|
conn->has_sent_end = 1; /* no need to send end, we just got one! */
|
2003-04-12 00:11:11 +02:00
|
|
|
#endif
|
2003-11-17 08:20:51 +01:00
|
|
|
return 0;
|
2003-05-06 01:24:46 +02:00
|
|
|
case RELAY_COMMAND_EXTEND:
|
|
|
|
if(conn) {
|
2003-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"'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-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"'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-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"circuit_finish_handshake failed.");
|
2003-05-06 01:24:46 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2003-11-17 08:20:51 +01:00
|
|
|
if (circuit_send_next_onion_skin(circ)<0) {
|
|
|
|
log_fn(LOG_WARN,"circuit_send_next_onion_skin() failed.");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
2003-06-12 12:16:33 +02:00
|
|
|
case RELAY_COMMAND_TRUNCATE:
|
|
|
|
if(edge_type == EDGE_AP) {
|
2003-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"'truncate' unsupported at AP. Dropping.");
|
2003-06-12 12:16:33 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(circ->n_conn) {
|
2003-11-11 04:01:48 +01:00
|
|
|
connection_send_destroy(circ->n_circ_id, circ->n_conn);
|
2003-06-12 12:16:33 +02:00
|
|
|
circ->n_conn = NULL;
|
|
|
|
}
|
2003-06-18 00:18:26 +02:00
|
|
|
log_fn(LOG_DEBUG, "Processed 'truncate', replying.");
|
2003-10-04 10:19:23 +02:00
|
|
|
connection_edge_send_command(NULL, circ, RELAY_COMMAND_TRUNCATED,
|
|
|
|
NULL, 0, NULL);
|
|
|
|
return 0;
|
2003-06-12 12:16:33 +02:00
|
|
|
case RELAY_COMMAND_TRUNCATED:
|
|
|
|
if(edge_type == EDGE_EXIT) {
|
2003-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"'truncated' unsupported at exit. Dropping.");
|
2003-06-12 12:16:33 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2003-11-17 08:20:51 +01:00
|
|
|
circuit_truncated(circ, layer_hint);
|
|
|
|
return 0;
|
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-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"'connected' unsupported at exit. Dropping.");
|
2003-04-12 00:11:11 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(!conn) {
|
2003-09-26 12:03:50 +02:00
|
|
|
log_fn(LOG_INFO,"connected cell dropped, unknown stream %d.",*(int*)conn->stream_id);
|
2003-11-17 08:20:51 +01:00
|
|
|
return 0;
|
2003-04-12 00:11:11 +02:00
|
|
|
}
|
2003-09-26 12:03:50 +02:00
|
|
|
log_fn(LOG_INFO,"Connected! Notifying application.");
|
2003-11-14 21:45:47 +01:00
|
|
|
if (cell->length-RELAY_HEADER_SIZE == 4) {
|
2003-11-23 19:16:06 +01:00
|
|
|
addr = ntohl(*(uint32_t*)(cell->payload + RELAY_HEADER_SIZE));
|
2003-11-16 18:00:02 +01:00
|
|
|
client_dns_set_entry(conn->socks_request->address, addr);
|
2003-11-14 21:45:47 +01:00
|
|
|
}
|
2003-10-04 03:37:01 +02:00
|
|
|
if(connection_ap_handshake_socks_reply(conn, NULL, 0, 1) < 0) {
|
2003-10-21 10:37:07 +02:00
|
|
|
log_fn(LOG_INFO,"Writing to socks-speaking application failed. Closing.");
|
2003-10-22 09:55:44 +02:00
|
|
|
connection_edge_end(conn, END_STREAM_REASON_MISC, conn->cpath_layer);
|
2003-04-12 00:11:11 +02:00
|
|
|
}
|
2003-11-17 08:20:51 +01:00
|
|
|
return 0;
|
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-10-09 20:45:14 +02:00
|
|
|
connection_edge_package_raw_inbuf(conn); /* handle whatever might still be on the inbuf */
|
2003-11-17 08:20:51 +01:00
|
|
|
return 0;
|
2003-04-12 00:11:11 +02:00
|
|
|
default:
|
2003-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"unknown relay command %d.",relay_command);
|
2003-09-26 12:03:50 +02:00
|
|
|
return -1;
|
2003-04-12 00:11:11 +02:00
|
|
|
}
|
2003-11-17 08:20:51 +01:00
|
|
|
assert(0);
|
|
|
|
return -1;
|
2003-04-12 00:11:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int connection_edge_finished_flushing(connection_t *conn) {
|
2003-11-23 19:16:06 +01:00
|
|
|
unsigned char connected_payload[4];
|
2003-04-12 00:11:11 +02:00
|
|
|
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-08-14 19:13:52 +02:00
|
|
|
if(!ERRNO_CONN_EINPROGRESS(errno)) {
|
2003-04-12 00:11:11 +02:00
|
|
|
/* 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-09-26 12:03:50 +02:00
|
|
|
log_fn(LOG_INFO,"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);
|
2003-10-04 10:19:23 +02:00
|
|
|
/* deliver a 'connected' relay cell back through the circuit. */
|
2003-11-23 19:16:06 +01:00
|
|
|
*(uint32_t*)connected_payload = htonl(conn->addr);
|
2003-10-22 11:08:10 +02:00
|
|
|
if(connection_edge_send_command(conn, circuit_get_by_conn(conn),
|
|
|
|
RELAY_COMMAND_CONNECTED, NULL, 0, conn->cpath_layer) < 0)
|
|
|
|
return 0; /* circuit is closed, don't continue */
|
2003-10-04 10:19:23 +02:00
|
|
|
return connection_process_inbuf(conn); /* in case the server has written anything */
|
2003-04-12 00:11:11 +02:00
|
|
|
case AP_CONN_STATE_OPEN:
|
|
|
|
case EXIT_CONN_STATE_OPEN:
|
|
|
|
connection_stop_writing(conn);
|
2003-10-22 11:08:10 +02:00
|
|
|
connection_edge_consider_sending_sendme(conn);
|
2003-10-04 04:38:18 +02:00
|
|
|
return 0;
|
2003-10-04 03:37:01 +02:00
|
|
|
case AP_CONN_STATE_SOCKS_WAIT:
|
|
|
|
connection_stop_writing(conn);
|
|
|
|
return 0;
|
2003-04-12 00:11:11 +02:00
|
|
|
default:
|
2003-11-14 21:45:47 +01:00
|
|
|
log_fn(LOG_WARN,"BUG: called in unexpected state: %d", conn->state);
|
2003-09-26 12:03:50 +02:00
|
|
|
return -1;
|
2003-04-12 00:11:11 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-10-02 22:00:38 +02:00
|
|
|
uint64_t stats_n_data_cells_packaged = 0;
|
|
|
|
uint64_t stats_n_data_bytes_packaged = 0;
|
|
|
|
uint64_t stats_n_data_cells_received = 0;
|
|
|
|
uint64_t stats_n_data_bytes_received = 0;
|
|
|
|
|
2003-10-09 20:45:14 +02:00
|
|
|
int connection_edge_package_raw_inbuf(connection_t *conn) {
|
2003-10-04 10:19:23 +02:00
|
|
|
int amount_to_process, length;
|
|
|
|
char payload[CELL_PAYLOAD_SIZE];
|
2003-09-13 00:45:31 +02:00
|
|
|
circuit_t *circ;
|
|
|
|
|
|
|
|
assert(conn);
|
|
|
|
assert(!connection_speaks_cells(conn));
|
|
|
|
|
2003-10-09 20:45:14 +02:00
|
|
|
repeat_connection_edge_package_raw_inbuf:
|
2003-09-13 00:45:31 +02:00
|
|
|
|
|
|
|
circ = circuit_get_by_conn(conn);
|
|
|
|
if(!circ) {
|
2003-09-26 12:03:50 +02:00
|
|
|
log_fn(LOG_INFO,"conn has no circuits! Closing.");
|
2003-09-13 00:45:31 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(circuit_consider_stop_edge_reading(circ, conn->type, conn->cpath_layer))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if(conn->package_window <= 0) {
|
2003-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"called with package_window %d. Tell Roger.", conn->package_window);
|
2003-09-13 00:45:31 +02:00
|
|
|
connection_stop_reading(conn);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-09-25 07:17:11 +02:00
|
|
|
amount_to_process = buf_datalen(conn->inbuf);
|
2003-09-13 00:45:31 +02:00
|
|
|
|
|
|
|
if(!amount_to_process)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if(amount_to_process > CELL_PAYLOAD_SIZE - RELAY_HEADER_SIZE) {
|
2003-10-04 10:19:23 +02:00
|
|
|
length = CELL_PAYLOAD_SIZE - RELAY_HEADER_SIZE;
|
2003-09-13 00:45:31 +02:00
|
|
|
} else {
|
2003-10-04 10:19:23 +02:00
|
|
|
length = amount_to_process;
|
2003-09-13 00:45:31 +02:00
|
|
|
}
|
2003-10-04 10:19:23 +02:00
|
|
|
stats_n_data_bytes_packaged += length;
|
2003-10-02 22:00:38 +02:00
|
|
|
stats_n_data_cells_packaged += 1;
|
2003-09-13 00:45:31 +02:00
|
|
|
|
2003-10-04 10:19:23 +02:00
|
|
|
connection_fetch_from_buf(payload, length, conn);
|
|
|
|
|
|
|
|
log_fn(LOG_DEBUG,"(%d) Packaging %d bytes (%d waiting).",conn->s,length,
|
2003-09-25 07:17:11 +02:00
|
|
|
(int)buf_datalen(conn->inbuf));
|
2003-09-13 00:45:31 +02:00
|
|
|
|
2003-10-22 11:08:10 +02:00
|
|
|
if(connection_edge_send_command(conn, circ, RELAY_COMMAND_DATA,
|
|
|
|
payload, length, conn->cpath_layer) < 0)
|
|
|
|
return 0; /* circuit is closed, don't continue */
|
2003-10-04 10:19:23 +02:00
|
|
|
|
2003-09-13 00:45:31 +02:00
|
|
|
if(conn->type == CONN_TYPE_EXIT) {
|
|
|
|
assert(circ->package_window > 0);
|
|
|
|
circ->package_window--;
|
2003-10-04 10:19:23 +02:00
|
|
|
} else { /* we're an AP */
|
2003-09-13 00:45:31 +02:00
|
|
|
assert(conn->type == CONN_TYPE_AP);
|
|
|
|
assert(conn->cpath_layer->package_window > 0);
|
|
|
|
conn->cpath_layer->package_window--;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(--conn->package_window <= 0) { /* is it 0 after decrement? */
|
|
|
|
connection_stop_reading(conn);
|
|
|
|
log_fn(LOG_DEBUG,"conn->package_window reached 0.");
|
|
|
|
circuit_consider_stop_edge_reading(circ, conn->type, conn->cpath_layer);
|
|
|
|
return 0; /* don't process the inbuf any more */
|
|
|
|
}
|
|
|
|
log_fn(LOG_DEBUG,"conn->package_window is now %d",conn->package_window);
|
|
|
|
|
|
|
|
/* handle more if there's more, or return 0 if there isn't */
|
2003-10-09 20:45:14 +02:00
|
|
|
goto repeat_connection_edge_package_raw_inbuf;
|
2003-09-13 00:45:31 +02:00
|
|
|
}
|
|
|
|
|
2003-11-11 03:41:31 +01:00
|
|
|
/* Tell any APs that are waiting for a new circuit that one is available */
|
|
|
|
void connection_ap_attach_pending(void)
|
|
|
|
{
|
2003-11-16 06:33:45 +01:00
|
|
|
connection_t **carray;
|
|
|
|
int n, i;
|
|
|
|
|
|
|
|
get_connection_array(&carray, &n);
|
|
|
|
|
|
|
|
for (i = 0; i < n; ++i) {
|
|
|
|
if (carray[i]->type != CONN_TYPE_AP ||
|
|
|
|
carray[i]->type != AP_CONN_STATE_CIRCUIT_WAIT)
|
|
|
|
continue;
|
2003-11-16 22:49:52 +01:00
|
|
|
if (connection_ap_handshake_attach_circuit(carray[i])<0) {
|
2003-11-17 01:57:56 +01:00
|
|
|
if(!circuit_get_newest(carray[i], 0)) {
|
|
|
|
/* if there are no acceptable clean or not-very-dirty circs on the way */
|
2003-11-19 03:22:52 +01:00
|
|
|
circuit_launch_new();
|
2003-11-17 01:57:56 +01:00
|
|
|
}
|
2003-11-16 06:33:45 +01:00
|
|
|
}
|
2003-11-11 03:41:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-10-22 11:08:10 +02:00
|
|
|
static void connection_edge_consider_sending_sendme(connection_t *conn) {
|
2003-09-13 00:45:31 +02:00
|
|
|
circuit_t *circ;
|
|
|
|
|
|
|
|
if(connection_outbuf_too_full(conn))
|
2003-10-04 04:38:18 +02:00
|
|
|
return;
|
2003-09-13 00:45:31 +02:00
|
|
|
|
|
|
|
circ = circuit_get_by_conn(conn);
|
|
|
|
if(!circ) {
|
2003-10-22 11:08:10 +02:00
|
|
|
/* this can legitimately happen if the destroy has already
|
|
|
|
* arrived and torn down the circuit */
|
2003-09-26 12:03:50 +02:00
|
|
|
log_fn(LOG_INFO,"No circuit associated with conn. Skipping.");
|
2003-10-04 04:38:18 +02:00
|
|
|
return;
|
2003-09-13 00:45:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
while(conn->deliver_window < STREAMWINDOW_START - STREAMWINDOW_INCREMENT) {
|
|
|
|
log_fn(LOG_DEBUG,"Outbuf %d, Queueing stream sendme.", conn->outbuf_flushlen);
|
|
|
|
conn->deliver_window += STREAMWINDOW_INCREMENT;
|
2003-10-22 11:08:10 +02:00
|
|
|
if(connection_edge_send_command(conn, circ, RELAY_COMMAND_SENDME,
|
|
|
|
NULL, 0, conn->cpath_layer) < 0) {
|
|
|
|
log_fn(LOG_WARN,"connection_edge_send_command failed. Returning.");
|
|
|
|
return; /* the circuit's closed, don't continue */
|
2003-09-13 00:45:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int connection_ap_handshake_process_socks(connection_t *conn) {
|
2003-11-11 03:41:31 +01:00
|
|
|
socks_request_t *socks;
|
2003-10-04 03:37:01 +02:00
|
|
|
int sockshere;
|
2003-09-13 00:45:31 +02:00
|
|
|
|
|
|
|
assert(conn);
|
2003-11-11 03:41:31 +01:00
|
|
|
assert(conn->type == CONN_TYPE_AP);
|
|
|
|
assert(conn->state == AP_CONN_STATE_SOCKS_WAIT);
|
|
|
|
assert(conn->socks_request);
|
|
|
|
socks = conn->socks_request;
|
2003-09-13 00:45:31 +02:00
|
|
|
|
|
|
|
log_fn(LOG_DEBUG,"entered.");
|
|
|
|
|
2003-11-11 03:41:31 +01:00
|
|
|
sockshere = fetch_from_buf_socks(conn->inbuf, socks);
|
2003-10-04 03:37:01 +02:00
|
|
|
if(sockshere == -1 || sockshere == 0) {
|
2003-11-11 03:41:31 +01:00
|
|
|
if(socks->replylen) { /* we should send reply back */
|
2003-10-04 03:37:01 +02:00
|
|
|
log_fn(LOG_DEBUG,"reply is already set for us. Using it.");
|
2003-11-11 03:41:31 +01:00
|
|
|
connection_ap_handshake_socks_reply(conn, socks->reply, socks->replylen, 0);
|
2003-10-04 03:37:01 +02:00
|
|
|
} else if(sockshere == -1) { /* send normal reject */
|
2003-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"Fetching socks handshake failed. Closing.");
|
2003-10-04 03:37:01 +02:00
|
|
|
connection_ap_handshake_socks_reply(conn, NULL, 0, 0);
|
|
|
|
} else {
|
|
|
|
log_fn(LOG_DEBUG,"socks handshake not all here yet.");
|
|
|
|
}
|
|
|
|
return sockshere;
|
|
|
|
} /* else socks handshake is done, continue processing */
|
2003-09-13 00:45:31 +02:00
|
|
|
|
2003-11-11 03:41:31 +01:00
|
|
|
conn->state = AP_CONN_STATE_CIRCUIT_WAIT;
|
2003-11-17 01:57:56 +01:00
|
|
|
if(connection_ap_handshake_attach_circuit(conn) < 0)
|
2003-11-19 03:22:52 +01:00
|
|
|
circuit_launch_new(); /* Build another circuit to handle this stream */
|
2003-11-11 03:41:31 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Try to find a live circuit. If we don't find one, tell 'conn' to
|
2003-11-12 05:24:04 +01:00
|
|
|
* stop reading and return 0. Otherwise, associate the CONN_TYPE_AP
|
2003-11-16 22:49:52 +01:00
|
|
|
* connection 'conn' with a safe live circuit, start sending a
|
2003-11-12 05:24:04 +01:00
|
|
|
* BEGIN cell down the circuit, and return 1.
|
2003-11-11 03:41:31 +01:00
|
|
|
*/
|
|
|
|
static int connection_ap_handshake_attach_circuit(connection_t *conn) {
|
|
|
|
circuit_t *circ;
|
2003-11-16 22:49:52 +01:00
|
|
|
|
2003-11-11 03:41:31 +01:00
|
|
|
assert(conn);
|
|
|
|
assert(conn->type == CONN_TYPE_AP);
|
|
|
|
assert(conn->state == AP_CONN_STATE_CIRCUIT_WAIT);
|
|
|
|
assert(conn->socks_request);
|
2003-11-16 22:49:52 +01:00
|
|
|
|
2003-09-13 00:45:31 +02:00
|
|
|
/* find the circuit that we should use, if there is one. */
|
2003-11-17 01:57:56 +01:00
|
|
|
circ = circuit_get_newest(conn, 1);
|
2003-09-13 00:45:31 +02:00
|
|
|
|
|
|
|
if(!circ) {
|
2003-11-16 22:49:52 +01:00
|
|
|
log_fn(LOG_INFO,"No safe circuit ready for edge connection; delaying.");
|
|
|
|
connection_stop_reading(conn); /* don't read until the connected cell arrives */
|
2003-11-16 06:33:45 +01:00
|
|
|
return -1;
|
2003-09-13 00:45:31 +02:00
|
|
|
}
|
2003-11-16 06:33:45 +01:00
|
|
|
|
2003-11-11 05:09:34 +01:00
|
|
|
connection_start_reading(conn);
|
2003-09-13 00:45:31 +02:00
|
|
|
|
2003-11-17 00:43:08 +01:00
|
|
|
if(!circ->timestamp_dirty)
|
|
|
|
circ->timestamp_dirty = time(NULL);
|
2003-09-13 00:45:31 +02:00
|
|
|
|
|
|
|
/* add it into the linked list of streams on this circuit */
|
2003-11-11 04:01:48 +01:00
|
|
|
log_fn(LOG_DEBUG,"attaching new conn to circ. n_circ_id %d.", circ->n_circ_id);
|
2003-09-13 00:45:31 +02:00
|
|
|
conn->next_stream = circ->p_streams;
|
2003-11-23 19:16:06 +01:00
|
|
|
/* assert_connection_ok(conn, time(NULL)); */
|
2003-09-13 00:45:31 +02:00
|
|
|
circ->p_streams = conn;
|
|
|
|
|
|
|
|
assert(circ->cpath && circ->cpath->prev);
|
|
|
|
assert(circ->cpath->prev->state == CPATH_STATE_OPEN);
|
|
|
|
conn->cpath_layer = circ->cpath->prev;
|
|
|
|
|
2003-11-12 05:24:04 +01:00
|
|
|
connection_ap_handshake_send_begin(conn, circ);
|
2003-09-13 00:45:31 +02:00
|
|
|
|
2003-11-16 06:33:45 +01:00
|
|
|
return 0;
|
2003-09-13 00:45:31 +02:00
|
|
|
}
|
|
|
|
|
2003-09-18 10:11:31 +02:00
|
|
|
/* deliver the destaddr:destport in a relay cell */
|
2003-11-12 05:24:04 +01:00
|
|
|
static void connection_ap_handshake_send_begin(connection_t *ap_conn, circuit_t *circ)
|
2003-11-11 03:41:31 +01:00
|
|
|
{
|
2003-10-04 10:19:23 +02:00
|
|
|
char payload[CELL_PAYLOAD_SIZE];
|
|
|
|
int payload_len;
|
2003-11-14 21:45:47 +01:00
|
|
|
struct in_addr in;
|
|
|
|
const char *string_addr;
|
2003-09-18 10:11:31 +02:00
|
|
|
|
2003-11-11 03:41:31 +01:00
|
|
|
assert(ap_conn->type == CONN_TYPE_AP);
|
|
|
|
assert(ap_conn->state == AP_CONN_STATE_CIRCUIT_WAIT);
|
|
|
|
assert(ap_conn->socks_request);
|
|
|
|
|
2003-11-12 05:12:35 +01:00
|
|
|
crypto_pseudo_rand(STREAM_ID_SIZE, ap_conn->stream_id);
|
|
|
|
/* FIXME check for collisions */
|
2003-10-04 10:19:23 +02:00
|
|
|
|
2003-11-17 08:37:45 +01:00
|
|
|
in.s_addr = htonl(client_dns_lookup_entry(ap_conn->socks_request->address));
|
2003-11-14 21:45:47 +01:00
|
|
|
string_addr = in.s_addr ? inet_ntoa(in) : NULL;
|
|
|
|
|
2003-10-04 10:19:23 +02:00
|
|
|
memcpy(payload, ap_conn->stream_id, STREAM_ID_SIZE);
|
|
|
|
payload_len = STREAM_ID_SIZE + 1 +
|
|
|
|
snprintf(payload+STREAM_ID_SIZE,CELL_PAYLOAD_SIZE-RELAY_HEADER_SIZE-STREAM_ID_SIZE,
|
2003-11-14 21:45:47 +01:00
|
|
|
"%s:%d",
|
2003-11-16 18:00:02 +01:00
|
|
|
string_addr ? string_addr : ap_conn->socks_request->address,
|
2003-11-14 21:45:47 +01:00
|
|
|
ap_conn->socks_request->port);
|
2003-10-04 10:19:23 +02:00
|
|
|
|
|
|
|
log_fn(LOG_DEBUG,"Sending relay cell to begin stream %d.",*(int *)ap_conn->stream_id);
|
|
|
|
|
2003-10-22 11:08:10 +02:00
|
|
|
if(connection_edge_send_command(ap_conn, circ, RELAY_COMMAND_BEGIN,
|
|
|
|
payload, payload_len, ap_conn->cpath_layer) < 0)
|
2003-11-12 05:24:04 +01:00
|
|
|
return; /* circuit is closed, don't continue */
|
2003-10-04 10:19:23 +02:00
|
|
|
|
2003-09-13 00:45:31 +02:00
|
|
|
ap_conn->package_window = STREAMWINDOW_START;
|
|
|
|
ap_conn->deliver_window = STREAMWINDOW_START;
|
|
|
|
ap_conn->state = AP_CONN_STATE_OPEN;
|
2003-11-14 21:45:47 +01:00
|
|
|
/* XXX Right now, we rely on the socks client not to send us any data
|
|
|
|
* XXX until we've sent back a socks reply. (If it does, we could wind
|
|
|
|
* XXX up packaging that data and sending it to the exit, then later having
|
|
|
|
* XXX the exit refuse us.)
|
|
|
|
* XXX Perhaps we should grow an AP_CONN_STATE_CONNECTING state.
|
|
|
|
*/
|
2003-11-11 04:01:48 +01:00
|
|
|
log_fn(LOG_INFO,"Address/port sent, ap socket %d, n_circ_id %d",ap_conn->s,circ->n_circ_id);
|
2003-11-12 05:24:04 +01:00
|
|
|
return;
|
2003-09-13 00:45:31 +02:00
|
|
|
}
|
|
|
|
|
2003-10-04 03:37:01 +02:00
|
|
|
static int connection_ap_handshake_socks_reply(connection_t *conn, char *reply,
|
|
|
|
int replylen, char success) {
|
|
|
|
char buf[256];
|
2003-09-13 00:45:31 +02:00
|
|
|
|
2003-10-04 03:37:01 +02:00
|
|
|
if(replylen) { /* we already have a reply in mind */
|
|
|
|
connection_write_to_buf(reply, replylen, conn);
|
2003-11-10 09:06:55 +01:00
|
|
|
return flush_buf(conn->s, conn->outbuf, &conn->outbuf_flushlen); /* try to flush it */
|
2003-10-04 03:37:01 +02:00
|
|
|
}
|
2003-11-11 05:13:37 +01:00
|
|
|
assert(conn->socks_request);
|
|
|
|
if(conn->socks_request->socks_version == 4) {
|
2003-10-04 03:37:01 +02:00
|
|
|
memset(buf,0,SOCKS4_NETWORK_LEN);
|
|
|
|
#define SOCKS4_GRANTED 90
|
|
|
|
#define SOCKS4_REJECT 91
|
|
|
|
buf[1] = (success ? SOCKS4_GRANTED : SOCKS4_REJECT);
|
|
|
|
/* leave version, destport, destip zero */
|
|
|
|
connection_write_to_buf(buf, SOCKS4_NETWORK_LEN, conn);
|
2003-11-10 09:06:55 +01:00
|
|
|
return flush_buf(conn->s, conn->outbuf, &conn->outbuf_flushlen); /* try to flush it */
|
2003-10-04 03:37:01 +02:00
|
|
|
}
|
2003-11-11 05:13:37 +01:00
|
|
|
if(conn->socks_request->socks_version == 5) {
|
2003-10-04 03:37:01 +02:00
|
|
|
buf[0] = 5; /* version 5 */
|
|
|
|
#define SOCKS5_SUCCESS 0
|
|
|
|
#define SOCKS5_GENERIC_ERROR 1
|
|
|
|
buf[1] = success ? SOCKS5_SUCCESS : SOCKS5_GENERIC_ERROR;
|
|
|
|
buf[2] = 0;
|
|
|
|
buf[3] = 1; /* ipv4 addr */
|
2003-11-18 09:20:19 +01:00
|
|
|
memset(buf+4,0,6); /* Set external addr/port to 0.
|
|
|
|
The spec doesn't seem to say what to do here. -RD */
|
2003-10-04 03:37:01 +02:00
|
|
|
connection_write_to_buf(buf,10,conn);
|
2003-11-10 09:06:55 +01:00
|
|
|
return flush_buf(conn->s, conn->outbuf, &conn->outbuf_flushlen); /* try to flush it */
|
2003-10-04 03:37:01 +02:00
|
|
|
}
|
2003-10-06 23:22:12 +02:00
|
|
|
return 0; /* if socks_version isn't 4 or 5, don't send anything */
|
2003-09-13 00:45:31 +02:00
|
|
|
}
|
|
|
|
|
2003-10-21 10:37:07 +02:00
|
|
|
static int connection_exit_begin_conn(cell_t *cell, circuit_t *circ) {
|
2003-09-13 00:45:31 +02:00
|
|
|
connection_t *n_stream;
|
|
|
|
char *colon;
|
|
|
|
|
2003-10-21 10:37:07 +02:00
|
|
|
/* XXX currently we don't send an end cell back if we drop the
|
|
|
|
* begin because it's malformed.
|
|
|
|
*/
|
|
|
|
|
2003-10-04 03:37:01 +02:00
|
|
|
if(!memchr(cell->payload+RELAY_HEADER_SIZE+STREAM_ID_SIZE,0,
|
|
|
|
cell->length-RELAY_HEADER_SIZE-STREAM_ID_SIZE)) {
|
2003-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"relay begin cell has no \\0. Dropping.");
|
2003-09-13 00:45:31 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
colon = strchr(cell->payload+RELAY_HEADER_SIZE+STREAM_ID_SIZE, ':');
|
|
|
|
if(!colon) {
|
2003-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"relay begin cell has no colon. Dropping.");
|
2003-09-13 00:45:31 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
*colon = 0;
|
|
|
|
|
|
|
|
if(!atoi(colon+1)) { /* bad port */
|
2003-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"relay begin cell has invalid port. Dropping.");
|
2003-09-13 00:45:31 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
log_fn(LOG_DEBUG,"Creating new exit connection.");
|
|
|
|
n_stream = connection_new(CONN_TYPE_EXIT);
|
|
|
|
|
|
|
|
memcpy(n_stream->stream_id, cell->payload + RELAY_HEADER_SIZE, STREAM_ID_SIZE);
|
2003-10-04 05:29:09 +02:00
|
|
|
n_stream->address = tor_strdup(cell->payload + RELAY_HEADER_SIZE + STREAM_ID_SIZE);
|
2003-09-13 00:45:31 +02:00
|
|
|
n_stream->port = atoi(colon+1);
|
|
|
|
n_stream->state = EXIT_CONN_STATE_RESOLVING;
|
2003-10-15 20:50:16 +02:00
|
|
|
/* leave n_stream->s at -1, because it's not yet valid */
|
2003-09-13 00:45:31 +02:00
|
|
|
n_stream->package_window = STREAMWINDOW_START;
|
|
|
|
n_stream->deliver_window = STREAMWINDOW_START;
|
|
|
|
if(connection_add(n_stream) < 0) { /* no space, forget it */
|
2003-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"connection_add failed. Dropping.");
|
2003-09-13 00:45:31 +02:00
|
|
|
connection_free(n_stream);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* add it into the linked list of streams on this circuit */
|
|
|
|
n_stream->next_stream = circ->n_streams;
|
|
|
|
circ->n_streams = n_stream;
|
|
|
|
|
|
|
|
/* send it off to the gethostbyname farm */
|
|
|
|
switch(dns_resolve(n_stream)) {
|
|
|
|
case 1: /* resolve worked */
|
2003-10-22 09:55:44 +02:00
|
|
|
connection_exit_connect(n_stream);
|
|
|
|
return 0;
|
2003-09-13 00:45:31 +02:00
|
|
|
case -1: /* resolve failed */
|
2003-11-30 10:57:00 +01:00
|
|
|
log_fn(LOG_INFO,"Resolve failed (%s).", n_stream->address);
|
2003-10-22 09:55:44 +02:00
|
|
|
connection_edge_end(n_stream, END_STREAM_REASON_RESOLVEFAILED, NULL);
|
|
|
|
/* case 0, resolve added to pending list */
|
2003-09-13 00:45:31 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-10-22 09:55:44 +02:00
|
|
|
void connection_exit_connect(connection_t *conn) {
|
2003-11-14 21:45:47 +01:00
|
|
|
unsigned char connected_payload[4];
|
2003-09-13 00:45:31 +02:00
|
|
|
|
|
|
|
if(router_compare_to_exit_policy(conn) < 0) {
|
|
|
|
log_fn(LOG_INFO,"%s:%d failed exit policy. Closing.", conn->address, conn->port);
|
2003-10-22 09:55:44 +02:00
|
|
|
connection_edge_end(conn, END_STREAM_REASON_EXITPOLICY, NULL);
|
|
|
|
return;
|
2003-09-13 00:45:31 +02:00
|
|
|
}
|
|
|
|
|
2003-09-16 03:58:46 +02:00
|
|
|
switch(connection_connect(conn, conn->address, conn->addr, conn->port)) {
|
|
|
|
case -1:
|
2003-10-22 09:55:44 +02:00
|
|
|
connection_edge_end(conn, END_STREAM_REASON_CONNECTFAILED, NULL);
|
|
|
|
return;
|
2003-09-16 03:58:46 +02:00
|
|
|
case 0:
|
2003-09-13 00:45:31 +02:00
|
|
|
connection_set_poll_socket(conn);
|
|
|
|
conn->state = EXIT_CONN_STATE_CONNECTING;
|
|
|
|
|
|
|
|
connection_watch_events(conn, POLLOUT | POLLIN | POLLERR);
|
|
|
|
/* writable indicates finish, readable indicates broken link,
|
|
|
|
error indicates broken link in windowsland. */
|
2003-10-22 09:55:44 +02:00
|
|
|
return;
|
2003-09-16 03:58:46 +02:00
|
|
|
/* case 1: fall through */
|
2003-09-13 00:45:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
connection_set_poll_socket(conn);
|
|
|
|
conn->state = EXIT_CONN_STATE_OPEN;
|
|
|
|
if(connection_wants_to_flush(conn)) { /* in case there are any queued data cells */
|
2003-10-10 03:48:32 +02:00
|
|
|
log_fn(LOG_WARN,"tell roger: newly connected conn had data waiting!");
|
2003-09-13 00:45:31 +02:00
|
|
|
// connection_start_writing(conn);
|
|
|
|
}
|
|
|
|
// connection_process_inbuf(conn);
|
|
|
|
connection_watch_events(conn, POLLIN);
|
|
|
|
|
|
|
|
/* also, deliver a 'connected' cell back through the circuit. */
|
2003-11-14 21:45:47 +01:00
|
|
|
*((uint32_t*) connected_payload) = htonl(conn->addr);
|
2003-10-04 10:19:23 +02:00
|
|
|
connection_edge_send_command(conn, circuit_get_by_conn(conn), RELAY_COMMAND_CONNECTED,
|
2003-11-14 21:45:47 +01:00
|
|
|
connected_payload, 4, conn->cpath_layer);
|
|
|
|
}
|
|
|
|
|
2003-11-16 06:33:45 +01:00
|
|
|
int connection_ap_can_use_exit(connection_t *conn, routerinfo_t *exit)
|
|
|
|
{
|
|
|
|
uint32_t addr;
|
2003-11-16 18:00:02 +01:00
|
|
|
|
2003-11-17 02:20:35 +01:00
|
|
|
assert(conn);
|
|
|
|
assert(conn->type == CONN_TYPE_AP);
|
|
|
|
assert(conn->socks_request);
|
|
|
|
|
2003-11-16 18:00:02 +01:00
|
|
|
addr = client_dns_lookup_entry(conn->socks_request->address);
|
2003-11-16 06:33:45 +01:00
|
|
|
return router_supports_exit_address(addr, conn->port, exit);
|
|
|
|
}
|
|
|
|
|
2003-11-14 21:45:47 +01:00
|
|
|
/* ***** Client DNS code ***** */
|
|
|
|
#define MAX_DNS_ENTRY_AGE 30*60
|
|
|
|
|
|
|
|
/* XXX Perhaps this should get merged with the dns.c code somehow. */
|
|
|
|
struct client_dns_entry {
|
|
|
|
SPLAY_ENTRY(client_dns_entry) node;
|
|
|
|
char *address;
|
|
|
|
uint32_t addr;
|
|
|
|
time_t expires;
|
|
|
|
};
|
|
|
|
static int client_dns_size = 0;
|
|
|
|
static SPLAY_HEAD(client_dns_tree, client_dns_entry) client_dns_root;
|
|
|
|
|
|
|
|
static int compare_client_dns_entries(struct client_dns_entry *a,
|
|
|
|
struct client_dns_entry *b)
|
|
|
|
{
|
|
|
|
return strcasecmp(a->address, b->address);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void client_dns_entry_free(struct client_dns_entry *ent)
|
|
|
|
{
|
|
|
|
tor_free(ent->address);
|
|
|
|
tor_free(ent);
|
|
|
|
}
|
|
|
|
|
|
|
|
SPLAY_PROTOTYPE(client_dns_tree, client_dns_entry, node, compare_client_dns_entries);
|
|
|
|
SPLAY_GENERATE(client_dns_tree, client_dns_entry, node, compare_client_dns_entries);
|
|
|
|
|
|
|
|
void client_dns_init(void) {
|
|
|
|
SPLAY_INIT(&client_dns_root);
|
|
|
|
client_dns_size = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t client_dns_lookup_entry(const char *address)
|
|
|
|
{
|
|
|
|
struct client_dns_entry *ent;
|
|
|
|
struct client_dns_entry search;
|
|
|
|
struct in_addr in;
|
|
|
|
time_t now;
|
|
|
|
|
|
|
|
assert(address);
|
|
|
|
|
|
|
|
if (inet_aton(address, &in)) {
|
2003-11-17 08:37:45 +01:00
|
|
|
log_fn(LOG_DEBUG, "Using static address %s (%08X)", address,
|
|
|
|
ntohl(in.s_addr));
|
|
|
|
return ntohl(in.s_addr);
|
2003-11-14 21:45:47 +01:00
|
|
|
}
|
|
|
|
search.address = (char*)address;
|
|
|
|
ent = SPLAY_FIND(client_dns_tree, &client_dns_root, &search);
|
|
|
|
if (!ent) {
|
|
|
|
log_fn(LOG_DEBUG, "No entry found for address %s", address);
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
now = time(NULL);
|
|
|
|
if (ent->expires < now) {
|
|
|
|
log_fn(LOG_DEBUG, "Expired entry found for address %s", address);
|
|
|
|
SPLAY_REMOVE(client_dns_tree, &client_dns_root, ent);
|
|
|
|
client_dns_entry_free(ent);
|
|
|
|
--client_dns_size;
|
|
|
|
return 0;
|
|
|
|
}
|
2003-11-17 08:37:45 +01:00
|
|
|
in.s_addr = htonl(ent->addr);
|
2003-11-14 21:45:47 +01:00
|
|
|
log_fn(LOG_DEBUG, "Found cached entry for address %s: %s", address,
|
|
|
|
inet_ntoa(in));
|
|
|
|
return ent->addr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static void client_dns_set_entry(const char *address, uint32_t val)
|
|
|
|
{
|
|
|
|
struct client_dns_entry *ent;
|
|
|
|
struct client_dns_entry search;
|
|
|
|
struct in_addr in;
|
|
|
|
time_t now;
|
|
|
|
|
|
|
|
assert(address);
|
|
|
|
assert(val);
|
|
|
|
|
|
|
|
if (inet_aton(address, &in)) {
|
2003-11-17 08:37:45 +01:00
|
|
|
if (ntohl(in.s_addr) == val)
|
2003-11-14 21:45:47 +01:00
|
|
|
return;
|
2003-11-17 08:37:45 +01:00
|
|
|
in.s_addr = htonl(val);
|
2003-11-14 21:45:47 +01:00
|
|
|
log_fn(LOG_WARN,
|
|
|
|
"Trying to store incompatible cached value %s for static address %s",
|
|
|
|
inet_ntoa(in), address);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
search.address = (char*) address;
|
|
|
|
now = time(NULL);
|
|
|
|
ent = SPLAY_FIND(client_dns_tree, &client_dns_root, &search);
|
|
|
|
if (ent) {
|
2003-11-23 19:16:06 +01:00
|
|
|
in.s_addr = htonl(val);
|
|
|
|
log_fn(LOG_DEBUG, "Updating entry for address %s: %s", address,
|
|
|
|
inet_ntoa(in));
|
2003-11-14 21:45:47 +01:00
|
|
|
ent->addr = val;
|
|
|
|
ent->expires = now+MAX_DNS_ENTRY_AGE;
|
|
|
|
} else {
|
2003-11-17 08:37:45 +01:00
|
|
|
in.s_addr = htonl(val);
|
2003-11-14 21:45:47 +01:00
|
|
|
log_fn(LOG_DEBUG, "Caching result for address %s: %s", address,
|
|
|
|
inet_ntoa(in));
|
|
|
|
ent = tor_malloc(sizeof(struct client_dns_entry));
|
|
|
|
ent->address = tor_strdup(address);
|
|
|
|
ent->addr = val;
|
|
|
|
ent->expires = now+MAX_DNS_ENTRY_AGE;
|
|
|
|
SPLAY_INSERT(client_dns_tree, &client_dns_root, ent);
|
|
|
|
++client_dns_size;
|
|
|
|
}
|
|
|
|
}
|
2003-11-16 06:33:45 +01:00
|
|
|
|
2003-11-16 22:49:52 +01:00
|
|
|
void client_dns_clean(void)
|
2003-11-14 21:45:47 +01:00
|
|
|
{
|
|
|
|
struct client_dns_entry **expired_entries;
|
|
|
|
int n_expired_entries = 0;
|
|
|
|
struct client_dns_entry *ent;
|
|
|
|
time_t now;
|
|
|
|
int i;
|
|
|
|
|
2003-11-18 01:02:24 +01:00
|
|
|
if(!client_dns_size)
|
|
|
|
return;
|
2003-11-14 21:45:47 +01:00
|
|
|
expired_entries = tor_malloc(client_dns_size *
|
2003-11-16 18:00:02 +01:00
|
|
|
sizeof(struct client_dns_entry *));
|
|
|
|
|
2003-11-14 21:45:47 +01:00
|
|
|
now = time(NULL);
|
|
|
|
SPLAY_FOREACH(ent, client_dns_tree, &client_dns_root) {
|
|
|
|
if (ent->expires < now) {
|
|
|
|
expired_entries[n_expired_entries++] = ent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (i = 0; i < n_expired_entries; ++i) {
|
|
|
|
SPLAY_REMOVE(client_dns_tree, &client_dns_root, expired_entries[i]);
|
|
|
|
client_dns_entry_free(expired_entries[i]);
|
|
|
|
}
|
|
|
|
tor_free(expired_entries);
|
2003-09-13 00:45:31 +02:00
|
|
|
}
|
|
|
|
|
2003-04-12 00:11:11 +02:00
|
|
|
/*
|
|
|
|
Local Variables:
|
|
|
|
mode:c
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
c-basic-offset:2
|
|
|
|
End:
|
|
|
|
*/
|