2004-11-07 02:33:06 +01:00
|
|
|
/* Copyright 2001 Matej Pfajfar.
|
|
|
|
* Copyright 2001-2004 Roger Dingledine.
|
|
|
|
* Copyright 2004 Roger Dingledine, Nick Mathewson. */
|
2003-04-12 00:11:11 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
/* $Id$ */
|
2004-11-29 23:25:31 +01:00
|
|
|
const char connection_edge_c_id[] = "$Id$";
|
2003-04-12 00:11:11 +02:00
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/**
|
|
|
|
* \file connection_edge.c
|
2004-05-13 09:24:49 +02:00
|
|
|
* \brief Handle edge streams.
|
2004-05-10 06:42:22 +02:00
|
|
|
**/
|
|
|
|
|
2003-04-12 00:11:11 +02:00
|
|
|
#include "or.h"
|
2003-11-14 21:45:47 +01:00
|
|
|
#include "tree.h"
|
2003-04-12 00:11:11 +02:00
|
|
|
|
2004-11-12 20:39:13 +01:00
|
|
|
static struct addr_policy_t *socks_policy = NULL;
|
2004-11-09 19:22:17 +01:00
|
|
|
/* List of exit_redirect_t */
|
|
|
|
static smartlist_t *redirect_exit_list = NULL;
|
2004-05-20 04:42:50 +02:00
|
|
|
|
2003-09-13 00:45:31 +02:00
|
|
|
static int connection_ap_handshake_process_socks(connection_t *conn);
|
|
|
|
|
2004-11-21 11:14:57 +01:00
|
|
|
/** There was an EOF. Send an end and mark the connection for close.
|
|
|
|
*/
|
|
|
|
int connection_edge_reached_eof(connection_t *conn) {
|
|
|
|
#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) {
|
|
|
|
connection_edge_end(conn, END_STREAM_REASON_DONE, conn->cpath_layer);
|
|
|
|
connection_mark_for_close(conn);
|
|
|
|
} else {
|
|
|
|
connection_edge_send_command(conn, circuit_get_by_conn(conn), RELAY_COMMAND_END,
|
|
|
|
NULL, 0, conn->cpath_layer);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
#else
|
2004-11-28 10:05:49 +01:00
|
|
|
if (buf_datalen(conn->inbuf)) {
|
2004-11-21 12:30:33 +01:00
|
|
|
/* it still has stuff to process. don't let it die yet. */
|
|
|
|
return 0;
|
|
|
|
}
|
2004-11-21 11:14:57 +01:00
|
|
|
log_fn(LOG_INFO,"conn (fd %d) reached eof (stream size %d). Closing.", conn->s, (int)conn->stream_size);
|
|
|
|
connection_edge_end(conn, END_STREAM_REASON_DONE, conn->cpath_layer);
|
2004-11-28 10:05:49 +01:00
|
|
|
if (!conn->marked_for_close) {
|
2004-11-21 11:14:57 +01:00
|
|
|
/* only mark it if not already marked. it's possible to
|
|
|
|
* get the 'end' right around when the client hangs up on us. */
|
|
|
|
connection_mark_for_close(conn);
|
|
|
|
}
|
|
|
|
conn->hold_open_until_flushed = 1; /* just because we shouldn't read
|
|
|
|
doesn't mean we shouldn't write */
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Handle new bytes on conn->inbuf based on state:
|
2004-05-10 06:42:22 +02:00
|
|
|
* - If it's waiting for socks info, try to read another step of the
|
|
|
|
* socks handshake out of conn->inbuf.
|
|
|
|
* - If it's open, then package more relay cells from the stream.
|
|
|
|
* - Else, leave the bytes on inbuf alone for now.
|
|
|
|
*
|
|
|
|
* Mark and return -1 if there was an unexpected error with the conn,
|
2004-04-01 00:02:13 +02:00
|
|
|
* else return 0.
|
|
|
|
*/
|
2004-11-21 08:43:12 +01:00
|
|
|
int connection_edge_process_inbuf(connection_t *conn, int package_partial) {
|
2003-04-12 00:11:11 +02:00
|
|
|
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn);
|
|
|
|
tor_assert(conn->type == CONN_TYPE_AP || conn->type == CONN_TYPE_EXIT);
|
2003-04-12 00:11:11 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
switch (conn->state) {
|
2003-04-12 00:11:11 +02:00
|
|
|
case AP_CONN_STATE_SOCKS_WAIT:
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_ap_handshake_process_socks(conn) < 0) {
|
2004-05-12 23:12:33 +02:00
|
|
|
conn->has_sent_end = 1; /* no circ yet */
|
|
|
|
connection_mark_for_close(conn);
|
2004-03-03 07:26:34 +01:00
|
|
|
conn->hold_open_until_flushed = 1;
|
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:
|
2004-11-28 10:05:49 +01:00
|
|
|
if (conn->package_window <= 0) {
|
2004-04-05 02:47:48 +02:00
|
|
|
/* XXX this is still getting called rarely :( */
|
2003-11-30 11:10:29 +01:00
|
|
|
log_fn(LOG_WARN,"called with package_window %d. Tell Roger.", conn->package_window);
|
|
|
|
return 0;
|
|
|
|
}
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_edge_package_raw_inbuf(conn, package_partial) < 0) {
|
2004-05-12 23:12:33 +02:00
|
|
|
connection_edge_end(conn, END_STREAM_REASON_MISC, conn->cpath_layer);
|
|
|
|
connection_mark_for_close(conn);
|
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:
|
2004-04-05 02:47:48 +02:00
|
|
|
case AP_CONN_STATE_RENDDESC_WAIT:
|
2004-04-01 00:02:13 +02:00
|
|
|
case AP_CONN_STATE_CIRCUIT_WAIT:
|
|
|
|
case AP_CONN_STATE_CONNECT_WAIT:
|
2004-11-24 07:16:36 +01:00
|
|
|
case AP_CONN_STATE_RESOLVE_WAIT:
|
2004-04-01 00:02:13 +02:00
|
|
|
log_fn(LOG_INFO,"data from edge while in '%s' state. Leaving it on buffer.",
|
|
|
|
conn_state_to_string[conn->type][conn->state]);
|
2003-04-12 00:11:11 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2004-01-20 10:21:46 +01:00
|
|
|
log_fn(LOG_WARN,"Got unexpected state %d. Closing.",conn->state);
|
2004-05-12 23:12:33 +02:00
|
|
|
connection_edge_end(conn, END_STREAM_REASON_MISC, conn->cpath_layer);
|
|
|
|
connection_mark_for_close(conn);
|
2004-01-20 10:21:46 +01:00
|
|
|
return -1;
|
2003-04-12 00:11:11 +02:00
|
|
|
}
|
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/** This edge needs to be closed, because its circuit has closed.
|
|
|
|
* Mark it for close and return 0.
|
|
|
|
*/
|
2004-02-29 01:11:37 +01:00
|
|
|
int connection_edge_destroy(uint16_t circ_id, connection_t *conn) {
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn->type == CONN_TYPE_AP || conn->type == CONN_TYPE_EXIT);
|
2004-02-29 01:11:37 +01:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (conn->marked_for_close)
|
2004-03-03 08:24:53 +01:00
|
|
|
return 0; /* already marked; probably got an 'end' */
|
2004-02-29 01:11:37 +01:00
|
|
|
log_fn(LOG_INFO,"CircID %d: At an edge. Marking connection for close.",
|
|
|
|
circ_id);
|
|
|
|
conn->has_sent_end = 1; /* we're closing the circuit, nothing to send to */
|
2004-05-12 23:12:33 +02:00
|
|
|
connection_mark_for_close(conn);
|
2004-03-03 07:26:34 +01:00
|
|
|
conn->hold_open_until_flushed = 1;
|
2004-02-29 01:11:37 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/** Send a relay end cell from stream <b>conn</b> to conn's circuit,
|
|
|
|
* with a destination of cpath_layer. (If cpath_layer is NULL, the
|
|
|
|
* destination is the circuit's origin.) Mark the relay end cell as
|
|
|
|
* closing because of <b>reason</b>.
|
|
|
|
*
|
|
|
|
* Return -1 if this function has already been called on this conn,
|
|
|
|
* else return 0.
|
|
|
|
*/
|
2004-05-12 23:12:33 +02:00
|
|
|
int
|
|
|
|
connection_edge_end(connection_t *conn, char reason, crypt_path_t *cpath_layer)
|
|
|
|
{
|
2003-10-22 09:55:44 +02:00
|
|
|
char payload[5];
|
2004-10-14 04:47:09 +02:00
|
|
|
size_t payload_len=1;
|
2003-10-22 09:55:44 +02:00
|
|
|
circuit_t *circ;
|
2003-10-21 10:37:07 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (conn->has_sent_end) {
|
2003-10-21 10:37:07 +02:00
|
|
|
log_fn(LOG_WARN,"It appears I've already sent the end. Are you calling me twice?");
|
2003-12-14 09:32:14 +01:00
|
|
|
return -1;
|
2003-10-21 10:37:07 +02:00
|
|
|
}
|
|
|
|
|
2003-10-22 09:55:44 +02:00
|
|
|
payload[0] = reason;
|
2004-11-28 10:05:49 +01:00
|
|
|
if (reason == END_STREAM_REASON_EXITPOLICY) {
|
2004-04-06 22:25:18 +02:00
|
|
|
/* this is safe even for rend circs, because they never fail
|
|
|
|
* because of exitpolicy */
|
2004-04-03 05:07:25 +02:00
|
|
|
set_uint32(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);
|
2004-11-28 10:05:49 +01:00
|
|
|
if (circ && !circ->marked_for_close) {
|
2003-10-21 10:37:07 +02:00
|
|
|
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);
|
2004-02-27 23:00:26 +01:00
|
|
|
} else {
|
|
|
|
log_fn(LOG_DEBUG,"Marking conn (fd %d); no circ to send end.",conn->s);
|
2003-10-21 10:37:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
conn->has_sent_end = 1;
|
2003-12-14 09:32:14 +01:00
|
|
|
return 0;
|
2003-10-21 10:37:07 +02:00
|
|
|
}
|
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/** Connection <b>conn</b> has finished writing and has no bytes left on
|
|
|
|
* its outbuf.
|
|
|
|
*
|
|
|
|
* If it's in state 'open', stop writing, consider responding with a
|
|
|
|
* sendme, and return.
|
|
|
|
* Otherwise, stop writing and return.
|
|
|
|
*
|
|
|
|
* If <b>conn</b> is broken, mark it for close and return -1, else
|
|
|
|
* return 0.
|
|
|
|
*/
|
2003-04-12 00:11:11 +02:00
|
|
|
int connection_edge_finished_flushing(connection_t *conn) {
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn);
|
|
|
|
tor_assert(conn->type == CONN_TYPE_AP || conn->type == CONN_TYPE_EXIT);
|
2003-04-12 00:11:11 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
switch (conn->state) {
|
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:
|
2004-04-05 02:47:48 +02:00
|
|
|
case AP_CONN_STATE_RENDDESC_WAIT:
|
2004-01-01 08:01:09 +01:00
|
|
|
case AP_CONN_STATE_CIRCUIT_WAIT:
|
2004-03-03 05:54:16 +01:00
|
|
|
case AP_CONN_STATE_CONNECT_WAIT:
|
2003-10-04 03:37:01 +02:00
|
|
|
connection_stop_writing(conn);
|
|
|
|
return 0;
|
2003-04-12 00:11:11 +02:00
|
|
|
default:
|
2004-04-01 00:02:13 +02: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;
|
|
|
|
}
|
|
|
|
|
2004-05-12 21:17:09 +02:00
|
|
|
/** Connected handler for exit connections: start writing pending
|
|
|
|
* data, deliver 'CONNECTED' relay cells as appropriate, and check
|
|
|
|
* any pending data that may have been received. */
|
|
|
|
int connection_edge_finished_connecting(connection_t *conn)
|
|
|
|
{
|
|
|
|
unsigned char connected_payload[4];
|
|
|
|
|
|
|
|
tor_assert(conn);
|
|
|
|
tor_assert(conn->type == CONN_TYPE_EXIT);
|
|
|
|
tor_assert(conn->state == EXIT_CONN_STATE_CONNECTING);
|
|
|
|
|
|
|
|
log_fn(LOG_INFO,"Exit connection to %s:%u established.",
|
|
|
|
conn->address,conn->port);
|
|
|
|
|
|
|
|
conn->state = EXIT_CONN_STATE_OPEN;
|
|
|
|
connection_watch_events(conn, POLLIN); /* stop writing, continue reading */
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_wants_to_flush(conn)) /* in case there are any queued relay cells */
|
2004-05-12 21:17:09 +02:00
|
|
|
connection_start_writing(conn);
|
|
|
|
/* deliver a 'connected' relay cell back through the circuit. */
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_edge_is_rendezvous_stream(conn)) {
|
|
|
|
if (connection_edge_send_command(conn, circuit_get_by_conn(conn),
|
2004-11-28 12:39:53 +01:00
|
|
|
RELAY_COMMAND_CONNECTED, NULL, 0, conn->cpath_layer) < 0)
|
2004-05-12 21:17:09 +02:00
|
|
|
return 0; /* circuit is closed, don't continue */
|
|
|
|
} else {
|
|
|
|
*(uint32_t*)connected_payload = htonl(conn->addr);
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_edge_send_command(conn, circuit_get_by_conn(conn),
|
2004-11-28 12:39:53 +01:00
|
|
|
RELAY_COMMAND_CONNECTED, connected_payload, 4, conn->cpath_layer) < 0)
|
2004-05-12 21:17:09 +02:00
|
|
|
return 0; /* circuit is closed, don't continue */
|
|
|
|
}
|
|
|
|
tor_assert(conn->package_window > 0);
|
2004-11-21 08:43:12 +01:00
|
|
|
/* in case the server has written anything */
|
|
|
|
return connection_edge_process_inbuf(conn, 1);
|
2004-05-12 21:17:09 +02:00
|
|
|
}
|
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/** How many times do we retry a general-purpose stream (detach it from
|
|
|
|
* one circuit and try another, after we wait a while with no 'connected'
|
|
|
|
* cell) before giving up?
|
|
|
|
*/
|
2004-03-08 00:50:15 +01:00
|
|
|
#define MAX_STREAM_RETRIES 4
|
2004-05-10 06:42:22 +02:00
|
|
|
|
|
|
|
/** Find all general-purpose AP streams in state connect_wait that sent
|
|
|
|
* their begin cell >=15 seconds ago. Detach from their current circuit,
|
|
|
|
* and mark their current circuit as unsuitable for new streams. Then call
|
|
|
|
* connection_ap_handshake_attach_circuit() to attach to a new circuit (if
|
|
|
|
* available) or launch a new one.
|
|
|
|
*
|
|
|
|
* For rendezvous streams, simply give up after 45 seconds (with no
|
|
|
|
* retry attempt).
|
|
|
|
*/
|
2004-01-20 10:21:46 +01:00
|
|
|
void connection_ap_expire_beginning(void) {
|
|
|
|
connection_t **carray;
|
|
|
|
connection_t *conn;
|
2004-02-29 10:15:29 +01:00
|
|
|
circuit_t *circ;
|
2004-01-20 10:21:46 +01:00
|
|
|
int n, i;
|
|
|
|
time_t now = time(NULL);
|
2004-11-06 06:18:11 +01:00
|
|
|
or_options_t *options = get_options();
|
2004-01-20 10:21:46 +01:00
|
|
|
|
|
|
|
get_connection_array(&carray, &n);
|
|
|
|
|
|
|
|
for (i = 0; i < n; ++i) {
|
|
|
|
conn = carray[i];
|
|
|
|
if (conn->type != CONN_TYPE_AP ||
|
2004-03-03 05:54:16 +01:00
|
|
|
conn->state != AP_CONN_STATE_CONNECT_WAIT)
|
2004-01-20 10:21:46 +01:00
|
|
|
continue;
|
2004-03-08 00:50:15 +01:00
|
|
|
if (now - conn->timestamp_lastread < 15)
|
|
|
|
continue;
|
|
|
|
conn->num_retries++;
|
|
|
|
circ = circuit_get_by_conn(conn);
|
2004-11-28 10:05:49 +01:00
|
|
|
if (!circ) { /* it's vanished? */
|
2004-04-26 00:48:47 +02:00
|
|
|
log_fn(LOG_INFO,"Conn is in connect-wait, but lost its circ.");
|
2004-05-12 23:12:33 +02:00
|
|
|
connection_mark_for_close(conn);
|
2004-04-26 00:48:47 +02:00
|
|
|
continue;
|
|
|
|
}
|
2004-11-28 10:05:49 +01:00
|
|
|
if (circ->purpose == CIRCUIT_PURPOSE_C_REND_JOINED) {
|
2004-04-06 00:43:01 +02:00
|
|
|
if (now - conn->timestamp_lastread > 45) {
|
|
|
|
log_fn(LOG_WARN,"Rend stream is %d seconds late. Giving up.",
|
|
|
|
(int)(now - conn->timestamp_lastread));
|
2004-05-12 23:12:33 +02:00
|
|
|
connection_edge_end(conn, END_STREAM_REASON_TIMEOUT, conn->cpath_layer);
|
|
|
|
connection_mark_for_close(conn);
|
2004-04-06 00:43:01 +02:00
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(circ->purpose == CIRCUIT_PURPOSE_C_GENERAL);
|
2004-11-28 10:05:49 +01:00
|
|
|
if (conn->num_retries >= MAX_STREAM_RETRIES) {
|
2004-03-08 00:50:15 +01:00
|
|
|
log_fn(LOG_WARN,"Stream is %d seconds late. Giving up.",
|
|
|
|
15*conn->num_retries);
|
|
|
|
circuit_log_path(LOG_WARN, circ);
|
2004-05-12 23:12:33 +02:00
|
|
|
connection_edge_end(conn, END_STREAM_REASON_TIMEOUT, conn->cpath_layer);
|
|
|
|
connection_mark_for_close(conn);
|
2004-03-08 00:50:15 +01:00
|
|
|
} else {
|
2004-02-17 22:07:15 +01:00
|
|
|
log_fn(LOG_WARN,"Stream is %d seconds late. Retrying.",
|
2004-01-20 10:21:46 +01:00
|
|
|
(int)(now - conn->timestamp_lastread));
|
2004-02-29 10:15:29 +01:00
|
|
|
circuit_log_path(LOG_WARN, circ);
|
2004-02-29 00:56:50 +01:00
|
|
|
/* send an end down the circuit */
|
|
|
|
connection_edge_end(conn, END_STREAM_REASON_TIMEOUT, conn->cpath_layer);
|
|
|
|
/* un-mark it as ending, since we're going to reuse it */
|
|
|
|
conn->has_sent_end = 0;
|
2004-03-08 00:50:15 +01:00
|
|
|
/* move it back into 'pending' state. */
|
2004-02-17 22:07:15 +01:00
|
|
|
conn->state = AP_CONN_STATE_CIRCUIT_WAIT;
|
2004-02-29 10:15:29 +01:00
|
|
|
circuit_detach_stream(circ, conn);
|
2004-03-06 06:10:07 +01:00
|
|
|
/* kludge to make us not try this circuit again, yet to allow
|
|
|
|
* current streams on it to survive if they can: make it
|
|
|
|
* unattractive to use for new streams */
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(circ->timestamp_dirty);
|
2004-11-06 06:18:11 +01:00
|
|
|
circ->timestamp_dirty -= options->NewCircuitPeriod;
|
2004-03-06 06:10:07 +01:00
|
|
|
/* give our stream another 15 seconds to try */
|
2004-02-18 02:21:20 +01:00
|
|
|
conn->timestamp_lastread += 15;
|
2004-04-01 01:06:16 +02:00
|
|
|
/* attaching to a dirty circuit is fine */
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_ap_handshake_attach_circuit(conn)<0) {
|
2004-02-18 02:21:20 +01:00
|
|
|
/* it will never work */
|
2004-02-29 00:56:50 +01:00
|
|
|
/* Don't need to send end -- we're not connected */
|
2004-05-12 23:12:33 +02:00
|
|
|
conn->has_sent_end = 1;
|
|
|
|
connection_mark_for_close(conn);
|
2004-02-18 02:21:20 +01:00
|
|
|
}
|
2004-03-08 00:50:15 +01:00
|
|
|
} /* end if max_retries */
|
|
|
|
} /* end for */
|
2004-01-20 10:21:46 +01:00
|
|
|
}
|
|
|
|
|
2004-11-21 00:16:03 +01:00
|
|
|
/** Tell any AP streams that are waiting for a new circuit that one is
|
2004-05-10 06:42:22 +02:00
|
|
|
* available.
|
|
|
|
*/
|
2003-11-11 03:41:31 +01:00
|
|
|
void connection_ap_attach_pending(void)
|
|
|
|
{
|
2003-11-16 06:33:45 +01:00
|
|
|
connection_t **carray;
|
2003-12-03 09:06:55 +01:00
|
|
|
connection_t *conn;
|
2003-11-16 06:33:45 +01:00
|
|
|
int n, i;
|
|
|
|
|
|
|
|
get_connection_array(&carray, &n);
|
|
|
|
|
|
|
|
for (i = 0; i < n; ++i) {
|
2003-12-03 09:06:55 +01:00
|
|
|
conn = carray[i];
|
2004-05-21 00:39:01 +02:00
|
|
|
if (conn->marked_for_close ||
|
|
|
|
conn->type != CONN_TYPE_AP ||
|
2003-12-03 10:50:02 +01:00
|
|
|
conn->state != AP_CONN_STATE_CIRCUIT_WAIT)
|
2003-11-16 06:33:45 +01:00
|
|
|
continue;
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_ap_handshake_attach_circuit(conn) < 0) {
|
2004-02-28 08:01:22 +01:00
|
|
|
/* -1 means it will never work */
|
2004-02-29 00:56:50 +01:00
|
|
|
/* Don't send end; there is no 'other side' yet */
|
2004-05-12 23:12:33 +02:00
|
|
|
conn->has_sent_end = 1;
|
|
|
|
connection_mark_for_close(conn);
|
2003-11-16 06:33:45 +01:00
|
|
|
}
|
2003-11-11 03:41:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/** connection_edge_process_inbuf() found a conn in state
|
|
|
|
* socks_wait. See if conn->inbuf has the right bytes to proceed with
|
|
|
|
* the socks handshake.
|
|
|
|
*
|
|
|
|
* If the handshake is complete, and it's for a general circuit, then
|
|
|
|
* try to attach it to a circuit (or launch one as needed). If it's for
|
|
|
|
* a rendezvous circuit, then fetch a rendezvous descriptor first (or
|
|
|
|
* attach/launch a circuit if the rendezvous descriptor is already here
|
|
|
|
* and fresh enough).
|
|
|
|
*
|
|
|
|
* Return -1 if an unexpected error with conn (and it should be marked
|
|
|
|
* for close), else return 0.
|
|
|
|
*/
|
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;
|
2004-11-29 09:34:54 +01:00
|
|
|
int addresstype;
|
2003-09-13 00:45:31 +02:00
|
|
|
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn);
|
|
|
|
tor_assert(conn->type == CONN_TYPE_AP);
|
|
|
|
tor_assert(conn->state == AP_CONN_STATE_SOCKS_WAIT);
|
|
|
|
tor_assert(conn->socks_request);
|
2003-11-11 03:41:31 +01:00
|
|
|
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);
|
2004-11-28 10:05:49 +01:00
|
|
|
if (sockshere == -1 || sockshere == 0) {
|
|
|
|
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);
|
2004-11-24 05:35:28 +01:00
|
|
|
socks->replylen = 0; /* zero it out so we can do another round of negotiation */
|
2004-11-28 10:05:49 +01: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.");
|
2004-11-04 00:13:28 +01:00
|
|
|
connection_ap_handshake_socks_reply(conn, NULL, 0, -1);
|
2003-10-04 03:37:01 +02:00
|
|
|
} else {
|
|
|
|
log_fn(LOG_DEBUG,"socks handshake not all here yet.");
|
|
|
|
}
|
2004-03-27 06:45:52 +01:00
|
|
|
if (sockshere == -1)
|
2004-07-17 21:50:29 +02:00
|
|
|
socks->has_finished = 1;
|
2003-10-04 03:37:01 +02:00
|
|
|
return sockshere;
|
|
|
|
} /* else socks handshake is done, continue processing */
|
2003-09-13 00:45:31 +02:00
|
|
|
|
2004-06-17 20:13:09 +02:00
|
|
|
if (socks->command == SOCKS_COMMAND_RESOLVE) {
|
2004-06-17 23:11:09 +02:00
|
|
|
uint32_t answer;
|
2004-06-17 20:13:09 +02:00
|
|
|
/* Reply to resolves immediately if we can. */
|
|
|
|
if (strlen(socks->address) > RELAY_PAYLOAD_SIZE) {
|
2004-11-15 08:50:15 +01:00
|
|
|
log_fn(LOG_WARN,"Address to be resolved is too large. Failing.");
|
2004-06-17 20:13:09 +02:00
|
|
|
connection_ap_handshake_socks_resolved(conn,RESOLVED_TYPE_ERROR,0,NULL);
|
2004-11-15 08:50:15 +01:00
|
|
|
return -1;
|
2004-06-17 20:13:09 +02:00
|
|
|
}
|
2004-06-17 23:11:09 +02:00
|
|
|
answer = htonl(client_dns_lookup_entry(socks->address));
|
2004-06-17 20:13:09 +02:00
|
|
|
if (answer) {
|
|
|
|
connection_ap_handshake_socks_resolved(conn,RESOLVED_TYPE_IPV4,4,
|
|
|
|
(char*)&answer);
|
2004-08-04 23:38:00 +02:00
|
|
|
conn->has_sent_end = 1;
|
2004-06-17 20:13:09 +02:00
|
|
|
connection_mark_for_close(conn);
|
2004-08-05 02:39:23 +02:00
|
|
|
conn->hold_open_until_flushed = 1;
|
2004-06-17 20:13:09 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-29 09:34:54 +01:00
|
|
|
/* Parse the address provided by SOCKS. Modify it in-place if it
|
|
|
|
* specifies a hidden-service (.onion) or particular exit node (.exit).
|
|
|
|
*/
|
|
|
|
addresstype = parse_address(socks->address);
|
|
|
|
|
|
|
|
if (addresstype == 1) {
|
|
|
|
/* .exit -- modify conn to specify the exit node. */
|
|
|
|
char *s = strrchr(socks->address,'.');
|
|
|
|
if (!s || s[1] == '\0') {
|
|
|
|
log_fn(LOG_WARN,"Malformed address '%s.exit'. Refusing.", socks->address);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
conn->chosen_exit_name = tor_strdup(s+1);
|
|
|
|
*s = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (addresstype != 2) {
|
|
|
|
/* not a hidden-service request (i.e. normal or .exit) */
|
2004-11-24 07:01:52 +01:00
|
|
|
if (socks->command == SOCKS_COMMAND_CONNECT && socks->port == 0) {
|
2004-11-15 08:50:15 +01:00
|
|
|
log_fn(LOG_WARN,"Application asked to connect to port 0. Refusing.");
|
|
|
|
return -1;
|
|
|
|
}
|
2004-04-01 04:41:41 +02:00
|
|
|
conn->state = AP_CONN_STATE_CIRCUIT_WAIT;
|
2004-04-03 00:23:15 +02:00
|
|
|
return connection_ap_handshake_attach_circuit(conn);
|
2004-04-01 04:41:41 +02:00
|
|
|
} else {
|
|
|
|
/* it's a hidden-service request */
|
2004-04-08 00:41:00 +02:00
|
|
|
rend_cache_entry_t *entry;
|
2004-04-18 11:04:37 +02:00
|
|
|
int r;
|
2004-04-01 04:41:41 +02:00
|
|
|
|
2004-08-07 02:19:14 +02:00
|
|
|
if (socks->command == SOCKS_COMMAND_RESOLVE) {
|
|
|
|
/* if it's a resolve request, fail it right now, rather than
|
|
|
|
* building all the circuits and then realizing it won't work. */
|
2004-11-15 08:50:15 +01:00
|
|
|
log_fn(LOG_WARN,"Resolve requests to hidden services not allowed. Failing.");
|
2004-08-07 02:19:14 +02:00
|
|
|
connection_ap_handshake_socks_resolved(conn,RESOLVED_TYPE_ERROR,0,NULL);
|
2004-11-15 08:50:15 +01:00
|
|
|
return -1;
|
2004-08-07 02:19:14 +02:00
|
|
|
}
|
|
|
|
|
2004-10-27 08:48:16 +02:00
|
|
|
strlcpy(conn->rend_query, socks->address, sizeof(conn->rend_query));
|
2004-04-03 03:59:53 +02:00
|
|
|
log_fn(LOG_INFO,"Got a hidden service request for ID '%s'", conn->rend_query);
|
2004-04-01 04:41:41 +02:00
|
|
|
/* see if we already have it cached */
|
2004-04-18 11:04:37 +02:00
|
|
|
r = rend_cache_lookup_entry(conn->rend_query, &entry);
|
2004-11-28 10:05:49 +01:00
|
|
|
if (r<0) {
|
2004-04-18 11:04:37 +02:00
|
|
|
log_fn(LOG_WARN,"Invalid service descriptor %s", conn->rend_query);
|
|
|
|
return -1;
|
|
|
|
}
|
2004-11-28 10:05:49 +01:00
|
|
|
if (r==0) {
|
2004-04-05 02:47:48 +02:00
|
|
|
conn->state = AP_CONN_STATE_RENDDESC_WAIT;
|
2004-04-18 11:04:37 +02:00
|
|
|
log_fn(LOG_INFO, "Unknown descriptor %s. Fetching.", conn->rend_query);
|
2004-04-18 09:37:16 +02:00
|
|
|
rend_client_refetch_renddesc(conn->rend_query);
|
2004-04-03 00:23:15 +02:00
|
|
|
return 0;
|
2004-04-01 04:41:41 +02:00
|
|
|
}
|
2004-11-28 10:05:49 +01:00
|
|
|
if (r>0) {
|
2004-04-18 11:04:37 +02:00
|
|
|
#define NUM_SECONDS_BEFORE_REFETCH (60*15)
|
2004-11-28 10:05:49 +01:00
|
|
|
if (time(NULL) - entry->received < NUM_SECONDS_BEFORE_REFETCH) {
|
2004-04-18 11:04:37 +02:00
|
|
|
conn->state = AP_CONN_STATE_CIRCUIT_WAIT;
|
|
|
|
log_fn(LOG_INFO, "Descriptor is here and fresh enough. Great.");
|
|
|
|
return connection_ap_handshake_attach_circuit(conn);
|
|
|
|
} else {
|
|
|
|
conn->state = AP_CONN_STATE_RENDDESC_WAIT;
|
|
|
|
log_fn(LOG_INFO, "Stale descriptor %s. Refetching.", conn->rend_query);
|
|
|
|
rend_client_refetch_renddesc(conn->rend_query);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2004-04-01 04:41:41 +02:00
|
|
|
}
|
2004-11-29 09:34:54 +01:00
|
|
|
return 0; /* unreached but keeps the compiler happy */
|
2004-02-18 02:21:20 +01:00
|
|
|
}
|
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/** Iterate over the two bytes of stream_id until we get one that is not
|
|
|
|
* already in use; return it. Return 0 if can't get a unique stream_id.
|
2003-12-19 22:25:44 +01:00
|
|
|
*/
|
|
|
|
static uint16_t get_unique_stream_id_by_circ(circuit_t *circ) {
|
|
|
|
connection_t *tmpconn;
|
|
|
|
uint16_t test_stream_id;
|
|
|
|
uint32_t attempts=0;
|
|
|
|
|
|
|
|
again:
|
|
|
|
test_stream_id = circ->next_stream_id++;
|
2004-11-28 10:05:49 +01:00
|
|
|
if (++attempts > 1<<16) {
|
2003-12-19 22:25:44 +01:00
|
|
|
/* Make sure we don't loop forever if all stream_id's are used. */
|
|
|
|
log_fn(LOG_WARN,"No unused stream IDs. Failing.");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (test_stream_id == 0)
|
|
|
|
goto again;
|
2004-11-28 10:05:49 +01:00
|
|
|
for (tmpconn = circ->p_streams; tmpconn; tmpconn=tmpconn->next_stream)
|
|
|
|
if (tmpconn->stream_id == test_stream_id)
|
2003-12-19 22:25:44 +01:00
|
|
|
goto again;
|
|
|
|
return test_stream_id;
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/** Write a relay begin cell, using destaddr and destport from ap_conn's
|
|
|
|
* socks_request field, and send it down circ.
|
|
|
|
*
|
|
|
|
* If ap_conn is broken, mark it for close and return -1. Else return 0.
|
|
|
|
*/
|
2004-04-05 09:41:31 +02:00
|
|
|
int 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
|
|
|
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(ap_conn->type == CONN_TYPE_AP);
|
|
|
|
tor_assert(ap_conn->state == AP_CONN_STATE_CIRCUIT_WAIT);
|
|
|
|
tor_assert(ap_conn->socks_request);
|
2003-11-11 03:41:31 +01:00
|
|
|
|
2003-12-19 22:25:44 +01:00
|
|
|
ap_conn->stream_id = get_unique_stream_id_by_circ(circ);
|
|
|
|
if (ap_conn->stream_id==0) {
|
2004-02-28 04:06:31 +01:00
|
|
|
/* Don't send end: there is no 'other side' yet */
|
2004-05-12 23:12:33 +02:00
|
|
|
ap_conn->has_sent_end = 1;
|
|
|
|
connection_mark_for_close(ap_conn);
|
2004-04-05 09:41:31 +02:00
|
|
|
circuit_mark_for_close(circ);
|
|
|
|
return -1;
|
2003-12-19 22:25:44 +01:00
|
|
|
}
|
2003-10-04 10:19:23 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (circ->purpose == CIRCUIT_PURPOSE_C_GENERAL) {
|
2004-04-05 09:41:31 +02:00
|
|
|
in.s_addr = htonl(client_dns_lookup_entry(ap_conn->socks_request->address));
|
|
|
|
string_addr = in.s_addr ? inet_ntoa(in) : NULL;
|
2003-11-14 21:45:47 +01:00
|
|
|
|
2004-10-27 08:37:34 +02:00
|
|
|
tor_snprintf(payload,RELAY_PAYLOAD_SIZE,
|
2004-04-05 09:41:31 +02:00
|
|
|
"%s:%d",
|
|
|
|
string_addr ? string_addr : ap_conn->socks_request->address,
|
|
|
|
ap_conn->socks_request->port);
|
|
|
|
} else {
|
2004-10-27 08:37:34 +02:00
|
|
|
tor_snprintf(payload,RELAY_PAYLOAD_SIZE,
|
2004-04-05 09:41:31 +02:00
|
|
|
":%d", ap_conn->socks_request->port);
|
|
|
|
}
|
2003-12-19 06:09:51 +01:00
|
|
|
payload_len = strlen(payload)+1;
|
2003-10-04 10:19:23 +02:00
|
|
|
|
2003-12-19 06:09:51 +01:00
|
|
|
log_fn(LOG_DEBUG,"Sending relay cell to begin stream %d.",ap_conn->stream_id);
|
2003-10-04 10:19:23 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_edge_send_command(ap_conn, circ, RELAY_COMMAND_BEGIN,
|
2004-11-28 12:39:53 +01:00
|
|
|
payload, payload_len, ap_conn->cpath_layer) < 0)
|
2004-04-05 09:41:31 +02:00
|
|
|
return -1; /* 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;
|
2004-03-03 05:54:16 +01:00
|
|
|
ap_conn->state = AP_CONN_STATE_CONNECT_WAIT;
|
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);
|
2004-11-03 19:33:07 +01:00
|
|
|
control_event_stream_status(ap_conn, STREAM_EVENT_SENT_CONNECT);
|
2004-04-05 09:41:31 +02:00
|
|
|
return 0;
|
2003-09-13 00:45:31 +02:00
|
|
|
}
|
|
|
|
|
2004-06-17 20:13:09 +02:00
|
|
|
/** Write a relay resolve cell, using destaddr and destport from ap_conn's
|
|
|
|
* socks_request field, and send it down circ.
|
|
|
|
*
|
|
|
|
* If ap_conn is broken, mark it for close and return -1. Else return 0.
|
|
|
|
*/
|
|
|
|
int connection_ap_handshake_send_resolve(connection_t *ap_conn, circuit_t *circ)
|
|
|
|
{
|
|
|
|
int payload_len;
|
|
|
|
const char *string_addr;
|
|
|
|
|
|
|
|
tor_assert(ap_conn->type == CONN_TYPE_AP);
|
|
|
|
tor_assert(ap_conn->state == AP_CONN_STATE_CIRCUIT_WAIT);
|
|
|
|
tor_assert(ap_conn->socks_request);
|
|
|
|
tor_assert(ap_conn->socks_request->command == SOCKS_COMMAND_RESOLVE);
|
|
|
|
tor_assert(circ->purpose == CIRCUIT_PURPOSE_C_GENERAL);
|
|
|
|
|
|
|
|
ap_conn->stream_id = get_unique_stream_id_by_circ(circ);
|
|
|
|
if (ap_conn->stream_id==0) {
|
|
|
|
/* Don't send end: there is no 'other side' yet */
|
|
|
|
ap_conn->has_sent_end = 1;
|
|
|
|
connection_mark_for_close(ap_conn);
|
|
|
|
circuit_mark_for_close(circ);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
string_addr = ap_conn->socks_request->address;
|
|
|
|
payload_len = strlen(string_addr);
|
|
|
|
tor_assert(strlen(string_addr) <= RELAY_PAYLOAD_SIZE);
|
|
|
|
|
|
|
|
log_fn(LOG_DEBUG,"Sending relay cell to begin stream %d.",ap_conn->stream_id);
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_edge_send_command(ap_conn, circ, RELAY_COMMAND_RESOLVE,
|
2004-06-17 20:13:09 +02:00
|
|
|
string_addr, payload_len, ap_conn->cpath_layer) < 0)
|
|
|
|
return -1; /* circuit is closed, don't continue */
|
|
|
|
|
|
|
|
ap_conn->state = AP_CONN_STATE_RESOLVE_WAIT;
|
|
|
|
log_fn(LOG_INFO,"Address sent for resolve, ap socket %d, n_circ_id %d",ap_conn->s,circ->n_circ_id);
|
2004-11-03 19:33:07 +01:00
|
|
|
control_event_stream_status(ap_conn, STREAM_EVENT_SENT_RESOLVE);
|
2004-06-17 20:13:09 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/** Make an AP connection_t, do a socketpair and attach one side
|
2004-04-01 00:02:13 +02:00
|
|
|
* to the conn, connection_add it, initialize it to circuit_wait,
|
|
|
|
* and call connection_ap_handshake_attach_circuit(conn) on it.
|
2004-05-10 06:42:22 +02:00
|
|
|
*
|
2004-04-01 00:02:13 +02:00
|
|
|
* Return the other end of the socketpair, or -1 if error.
|
|
|
|
*/
|
|
|
|
int connection_ap_make_bridge(char *address, uint16_t port) {
|
|
|
|
int fd[2];
|
|
|
|
connection_t *conn;
|
|
|
|
|
|
|
|
log_fn(LOG_INFO,"Making AP bridge to %s:%d ...",address,port);
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (tor_socketpair(AF_UNIX, SOCK_STREAM, 0, fd) < 0) {
|
2004-05-02 22:18:21 +02:00
|
|
|
log(LOG_WARN,"Couldn't construct socketpair (%s). Network down? Delaying.",
|
|
|
|
tor_socket_strerror(tor_socket_errno(-1)));
|
2004-04-17 02:46:05 +02:00
|
|
|
return -1;
|
2004-04-01 00:02:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
set_socket_nonblocking(fd[0]);
|
|
|
|
set_socket_nonblocking(fd[1]);
|
|
|
|
|
|
|
|
conn = connection_new(CONN_TYPE_AP);
|
|
|
|
conn->s = fd[0];
|
|
|
|
|
|
|
|
/* populate conn->socks_request */
|
|
|
|
|
|
|
|
/* leave version at zero, so the socks_reply is empty */
|
|
|
|
conn->socks_request->socks_version = 0;
|
|
|
|
conn->socks_request->has_finished = 0; /* waiting for 'connected' */
|
2004-10-27 08:48:16 +02:00
|
|
|
strlcpy(conn->socks_request->address, address,
|
|
|
|
sizeof(conn->socks_request->address));
|
2004-04-01 00:02:13 +02:00
|
|
|
conn->socks_request->port = port;
|
2004-07-17 21:50:29 +02:00
|
|
|
conn->socks_request->command = SOCKS_COMMAND_CONNECT;
|
2004-04-01 00:02:13 +02:00
|
|
|
|
|
|
|
conn->address = tor_strdup("(local bridge)");
|
2004-10-17 03:57:34 +02:00
|
|
|
conn->addr = 0;
|
2004-04-01 00:02:13 +02:00
|
|
|
conn->port = 0;
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_add(conn) < 0) { /* no space, forget it */
|
2004-04-01 00:02:13 +02:00
|
|
|
connection_free(conn); /* this closes fd[0] */
|
2004-04-28 23:14:56 +02:00
|
|
|
tor_close_socket(fd[1]);
|
2004-04-01 00:02:13 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
conn->state = AP_CONN_STATE_CIRCUIT_WAIT;
|
|
|
|
connection_start_reading(conn);
|
|
|
|
|
2004-04-01 01:06:16 +02:00
|
|
|
/* attaching to a dirty circuit is fine */
|
2004-04-03 00:23:15 +02:00
|
|
|
if (connection_ap_handshake_attach_circuit(conn) < 0) {
|
2004-05-12 23:12:33 +02:00
|
|
|
conn->has_sent_end = 1; /* no circ to send to */
|
|
|
|
connection_mark_for_close(conn);
|
2004-04-28 23:14:56 +02:00
|
|
|
tor_close_socket(fd[1]);
|
2004-04-01 00:02:13 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
log_fn(LOG_INFO,"... AP bridge created and connected.");
|
|
|
|
return fd[1];
|
|
|
|
}
|
|
|
|
|
2004-11-15 08:50:15 +01:00
|
|
|
/* DOCDOC */
|
2004-06-17 20:13:09 +02:00
|
|
|
void connection_ap_handshake_socks_resolved(connection_t *conn,
|
|
|
|
int answer_type,
|
2004-10-14 04:47:09 +02:00
|
|
|
size_t answer_len,
|
2004-06-17 20:13:09 +02:00
|
|
|
const char *answer)
|
|
|
|
{
|
|
|
|
char buf[256];
|
2004-10-14 04:47:09 +02:00
|
|
|
size_t replylen;
|
2004-06-17 20:13:09 +02:00
|
|
|
|
|
|
|
if (answer_type == RESOLVED_TYPE_IPV4) {
|
|
|
|
uint32_t a = get_uint32(answer);
|
2004-11-28 10:05:49 +01:00
|
|
|
if (a)
|
2004-08-15 22:05:35 +02:00
|
|
|
client_dns_set_entry(conn->socks_request->address, ntohl(a));
|
2004-06-17 20:13:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (conn->socks_request->socks_version == 4) {
|
|
|
|
buf[0] = 0x00; /* version */
|
|
|
|
if (answer_type == RESOLVED_TYPE_IPV4 && answer_len == 4) {
|
|
|
|
buf[1] = 90; /* "Granted" */
|
|
|
|
set_uint16(buf+2, 0);
|
|
|
|
memcpy(buf+4, answer, 4); /* address */
|
|
|
|
replylen = SOCKS4_NETWORK_LEN;
|
|
|
|
} else {
|
|
|
|
buf[1] = 91; /* "error" */
|
|
|
|
memset(buf+2, 0, 6);
|
|
|
|
replylen = SOCKS4_NETWORK_LEN;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* SOCKS5 */
|
|
|
|
buf[0] = 0x05; /* version */
|
|
|
|
if (answer_type == RESOLVED_TYPE_IPV4 && answer_len == 4) {
|
|
|
|
buf[1] = 0; /* succeeded */
|
|
|
|
buf[2] = 0; /* reserved */
|
|
|
|
buf[3] = 0x01; /* IPv4 address type */
|
|
|
|
memcpy(buf+4, answer, 4); /* address */
|
|
|
|
set_uint16(buf+8, 0); /* port == 0. */
|
|
|
|
replylen = 10;
|
|
|
|
} else if (answer_type == RESOLVED_TYPE_IPV6 && answer_len == 16) {
|
|
|
|
buf[1] = 0; /* succeeded */
|
|
|
|
buf[2] = 0; /* reserved */
|
|
|
|
buf[3] = 0x04; /* IPv6 address type */
|
|
|
|
memcpy(buf+4, answer, 16); /* address */
|
|
|
|
set_uint16(buf+20, 0); /* port == 0. */
|
|
|
|
replylen = 22;
|
|
|
|
} else {
|
|
|
|
buf[1] = 0x04; /* host unreachable */
|
|
|
|
memset(buf+2, 0, 8);
|
|
|
|
replylen = 10;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
connection_ap_handshake_socks_reply(conn, buf, replylen,
|
2004-11-04 00:13:28 +01:00
|
|
|
(answer_type == RESOLVED_TYPE_IPV4 ||
|
|
|
|
answer_type == RESOLVED_TYPE_IPV6) ? 1 : -1);
|
2004-11-15 08:50:15 +01:00
|
|
|
conn->socks_request->has_finished = 1;
|
2004-06-17 20:13:09 +02:00
|
|
|
}
|
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/** Send a socks reply to stream <b>conn</b>, using the appropriate
|
|
|
|
* socks version, etc.
|
|
|
|
*
|
2004-11-04 00:13:28 +01:00
|
|
|
* Status can be 1 (succeeded), -1 (failed), or 0 (not sure yet).
|
|
|
|
*
|
2004-05-10 06:42:22 +02:00
|
|
|
* If <b>reply</b> is defined, then write <b>replylen</b> bytes of it
|
2004-11-04 00:13:28 +01:00
|
|
|
* to conn and return, else reply based on <b>status</b>.
|
2004-05-10 06:42:22 +02:00
|
|
|
*
|
2004-11-04 00:13:28 +01:00
|
|
|
* If <b>reply</b> is undefined, <b>status</b> can't be 0.
|
2004-05-10 06:42:22 +02:00
|
|
|
*/
|
2004-03-27 06:45:52 +01:00
|
|
|
void connection_ap_handshake_socks_reply(connection_t *conn, char *reply,
|
2004-11-04 00:13:28 +01:00
|
|
|
size_t replylen, int status) {
|
2003-10-04 03:37:01 +02:00
|
|
|
char buf[256];
|
2003-09-13 00:45:31 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (status) /* it's either 1 or -1 */
|
2004-11-04 00:13:28 +01:00
|
|
|
control_event_stream_status(conn,
|
|
|
|
status==1 ? STREAM_EVENT_SUCCEEDED : STREAM_EVENT_FAILED);
|
2004-11-03 19:33:07 +01:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (replylen) { /* we already have a reply in mind */
|
2003-10-04 03:37:01 +02:00
|
|
|
connection_write_to_buf(reply, replylen, conn);
|
2004-03-03 07:26:34 +01:00
|
|
|
return;
|
2003-10-04 03:37:01 +02:00
|
|
|
}
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn->socks_request);
|
2004-11-04 00:13:28 +01:00
|
|
|
tor_assert(status == 1 || status == -1);
|
2004-11-28 10:05:49 +01:00
|
|
|
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
|
2004-11-04 00:13:28 +01:00
|
|
|
buf[1] = (status==1 ? SOCKS4_GRANTED : SOCKS4_REJECT);
|
2003-10-04 03:37:01 +02:00
|
|
|
/* leave version, destport, destip zero */
|
|
|
|
connection_write_to_buf(buf, SOCKS4_NETWORK_LEN, conn);
|
|
|
|
}
|
2004-11-28 10:05:49 +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
|
2004-11-04 00:13:28 +01:00
|
|
|
buf[1] = status==1 ? SOCKS5_SUCCESS : SOCKS5_GENERIC_ERROR;
|
2003-10-04 03:37:01 +02:00
|
|
|
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);
|
|
|
|
}
|
2004-04-01 00:02:13 +02:00
|
|
|
/* If socks_version isn't 4 or 5, don't send anything.
|
|
|
|
* This can happen in the case of AP bridges. */
|
2004-03-03 07:26:34 +01:00
|
|
|
return;
|
2003-09-13 00:45:31 +02:00
|
|
|
}
|
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/** A relay 'begin' cell has arrived, and either we are an exit hop
|
|
|
|
* for the circuit, or we are the origin and it is a rendezvous begin.
|
|
|
|
*
|
|
|
|
* Launch a new exit connection and initialize things appropriately.
|
|
|
|
*
|
|
|
|
* If it's a rendezvous stream, call connection_exit_connect() on
|
|
|
|
* it.
|
|
|
|
*
|
|
|
|
* For general streams, call dns_resolve() on it first, and only call
|
|
|
|
* connection_exit_connect() if the dns answer is already known.
|
|
|
|
*
|
|
|
|
* Note that we don't call connection_add() on the new stream! We wait
|
|
|
|
* for connection_exit_connect() to do that.
|
|
|
|
*
|
|
|
|
* Return -1 if we want to tear down <b>circ</b>. Else return 0.
|
|
|
|
*/
|
2004-05-13 09:24:49 +02:00
|
|
|
int connection_exit_begin_conn(cell_t *cell, circuit_t *circ) {
|
2003-09-13 00:45:31 +02:00
|
|
|
connection_t *n_stream;
|
2003-12-19 06:09:51 +01:00
|
|
|
relay_header_t rh;
|
2004-10-12 17:52:09 +02:00
|
|
|
char *address=NULL;
|
|
|
|
uint16_t port;
|
2003-09-13 00:45:31 +02:00
|
|
|
|
2004-04-15 02:03:48 +02:00
|
|
|
assert_circuit_ok(circ);
|
2003-12-19 06:09:51 +01:00
|
|
|
relay_header_unpack(&rh, cell->payload);
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (!memchr(cell->payload+RELAY_HEADER_SIZE, 0, rh.length)) {
|
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;
|
|
|
|
}
|
2004-11-23 00:28:26 +01:00
|
|
|
if (parse_addr_port(cell->payload+RELAY_HEADER_SIZE,&address,NULL,&port)<0) {
|
2004-10-12 17:52:09 +02:00
|
|
|
log_fn(LOG_WARN,"Unable to parse addr:port in relay begin cell. Dropping.");
|
2003-09-13 00:45:31 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2004-10-12 17:52:09 +02:00
|
|
|
if (port==0) {
|
|
|
|
log_fn(LOG_WARN,"Missing port in relay begin cell. Dropping.");
|
|
|
|
tor_free(address);
|
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);
|
2004-06-17 20:13:09 +02:00
|
|
|
n_stream->purpose = EXIT_PURPOSE_CONNECT;
|
2003-09-13 00:45:31 +02:00
|
|
|
|
2003-12-19 06:09:51 +01:00
|
|
|
n_stream->stream_id = rh.stream_id;
|
2004-10-12 17:52:09 +02:00
|
|
|
n_stream->port = port;
|
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;
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (circ->purpose == CIRCUIT_PURPOSE_S_REND_JOINED) {
|
2004-04-15 01:52:29 +02:00
|
|
|
log_fn(LOG_DEBUG,"begin is for rendezvous. configuring stream.");
|
2004-04-06 22:25:18 +02:00
|
|
|
n_stream->address = tor_strdup("(rendezvous)");
|
2004-04-09 19:51:57 +02:00
|
|
|
n_stream->state = EXIT_CONN_STATE_CONNECTING;
|
2004-10-27 08:48:16 +02:00
|
|
|
strlcpy(n_stream->rend_query, circ->rend_query,
|
|
|
|
sizeof(n_stream->rend_query));
|
2004-10-17 23:10:41 +02:00
|
|
|
tor_assert(connection_edge_is_rendezvous_stream(n_stream));
|
2004-04-15 02:03:48 +02:00
|
|
|
assert_circuit_ok(circ);
|
2004-11-28 10:05:49 +01:00
|
|
|
if (rend_service_set_connection_addr_port(n_stream, circ) < 0) {
|
2004-04-16 15:49:14 +02:00
|
|
|
log_fn(LOG_INFO,"Didn't find rendezvous service (port %d)",n_stream->port);
|
2004-05-12 23:12:33 +02:00
|
|
|
connection_edge_end(n_stream, END_STREAM_REASON_EXITPOLICY, n_stream->cpath_layer);
|
2004-05-05 03:26:57 +02:00
|
|
|
connection_free(n_stream);
|
2004-04-16 16:26:23 +02:00
|
|
|
circuit_mark_for_close(circ); /* knock the whole thing down, somebody screwed up */
|
2004-10-12 17:52:09 +02:00
|
|
|
tor_free(address);
|
2004-04-06 22:25:18 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2004-04-15 02:03:48 +02:00
|
|
|
assert_circuit_ok(circ);
|
2004-04-15 01:52:29 +02:00
|
|
|
log_fn(LOG_DEBUG,"Finished assigning addr/port");
|
2004-04-06 22:25:18 +02:00
|
|
|
n_stream->cpath_layer = circ->cpath->prev; /* link it */
|
2004-05-06 13:08:04 +02:00
|
|
|
|
|
|
|
/* add it into the linked list of n_streams on this circuit */
|
|
|
|
n_stream->next_stream = circ->n_streams;
|
|
|
|
circ->n_streams = n_stream;
|
|
|
|
assert_circuit_ok(circ);
|
|
|
|
|
2004-04-06 22:25:18 +02:00
|
|
|
connection_exit_connect(n_stream);
|
2004-10-12 17:52:09 +02:00
|
|
|
tor_free(address);
|
2004-04-06 22:25:18 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2004-10-12 17:52:09 +02:00
|
|
|
n_stream->address = address;
|
2004-04-09 23:31:09 +02:00
|
|
|
n_stream->state = EXIT_CONN_STATE_RESOLVEFAILED;
|
|
|
|
/* default to failed, change in dns_resolve if it turns out not to fail */
|
2004-04-06 22:25:18 +02:00
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (we_are_hibernating()) {
|
2004-10-31 21:28:41 +01:00
|
|
|
connection_edge_end(n_stream, END_STREAM_REASON_EXITPOLICY, n_stream->cpath_layer);
|
|
|
|
connection_free(n_stream);
|
|
|
|
}
|
|
|
|
|
2003-09-13 00:45:31 +02:00
|
|
|
/* send it off to the gethostbyname farm */
|
2004-11-28 10:05:49 +01:00
|
|
|
switch (dns_resolve(n_stream)) {
|
2003-09-13 00:45:31 +02:00
|
|
|
case 1: /* resolve worked */
|
2004-05-06 13:08:04 +02:00
|
|
|
|
|
|
|
/* add it into the linked list of n_streams on this circuit */
|
|
|
|
n_stream->next_stream = circ->n_streams;
|
|
|
|
circ->n_streams = n_stream;
|
|
|
|
assert_circuit_ok(circ);
|
|
|
|
|
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);
|
2004-05-12 23:12:33 +02:00
|
|
|
connection_edge_end(n_stream, END_STREAM_REASON_RESOLVEFAILED, n_stream->cpath_layer);
|
2004-05-05 03:26:57 +02:00
|
|
|
connection_free(n_stream);
|
2004-03-02 08:24:11 +01:00
|
|
|
break;
|
|
|
|
case 0: /* resolve added to pending list */
|
2004-05-06 13:08:04 +02:00
|
|
|
/* add it into the linked list of resolving_streams on this circuit */
|
|
|
|
n_stream->next_stream = circ->resolving_streams;
|
|
|
|
circ->resolving_streams = n_stream;
|
|
|
|
assert_circuit_ok(circ);
|
2004-03-02 08:24:11 +01:00
|
|
|
;
|
2003-09-13 00:45:31 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-06-17 20:13:09 +02:00
|
|
|
/**
|
|
|
|
* Called when we receive a RELAY_RESOLVE cell 'cell' along the circuit 'circ';
|
|
|
|
* begin resolving the hostname, and (eventually) reply with a RESOLVED cell.
|
|
|
|
*/
|
|
|
|
int connection_exit_begin_resolve(cell_t *cell, circuit_t *circ) {
|
|
|
|
connection_t *dummy_conn;
|
|
|
|
relay_header_t rh;
|
|
|
|
|
|
|
|
assert_circuit_ok(circ);
|
|
|
|
relay_header_unpack(&rh, cell->payload);
|
|
|
|
|
|
|
|
/* This 'dummy_conn' only exists to remember the stream ID
|
|
|
|
* associated with the resolve request; and to make the
|
|
|
|
* implementation of dns.c more uniform. (We really only need to
|
|
|
|
* remember the circuit, the stream ID, and the hostname to be
|
|
|
|
* resolved; but if we didn't store them in a connection like this,
|
|
|
|
* the housekeeping in dns.c would get way more complicated.)
|
|
|
|
*/
|
|
|
|
dummy_conn = connection_new(CONN_TYPE_EXIT);
|
|
|
|
dummy_conn->stream_id = rh.stream_id;
|
|
|
|
dummy_conn->address = tor_strndup(cell->payload+RELAY_HEADER_SIZE,
|
|
|
|
rh.length);
|
|
|
|
dummy_conn->port = 0;
|
|
|
|
dummy_conn->state = EXIT_CONN_STATE_RESOLVEFAILED;
|
|
|
|
dummy_conn->purpose = EXIT_PURPOSE_RESOLVE;
|
|
|
|
|
2004-09-21 20:12:12 +02:00
|
|
|
dummy_conn->next_stream = circ->resolving_streams;
|
|
|
|
circ->resolving_streams = dummy_conn;
|
|
|
|
|
2004-06-17 20:13:09 +02:00
|
|
|
/* send it off to the gethostbyname farm */
|
2004-11-28 10:05:49 +01:00
|
|
|
switch (dns_resolve(dummy_conn)) {
|
2004-09-21 20:12:12 +02:00
|
|
|
case 1: /* The result was cached; a resolved cell was sent. */
|
2004-11-09 21:04:00 +01:00
|
|
|
case -1:
|
2004-09-21 20:12:12 +02:00
|
|
|
circuit_detach_stream(circuit_get_by_conn(dummy_conn), dummy_conn);
|
2004-06-17 20:13:09 +02:00
|
|
|
connection_free(dummy_conn);
|
|
|
|
return 0;
|
|
|
|
case 0: /* resolve added to pending list */
|
|
|
|
assert_circuit_ok(circ);
|
|
|
|
;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/** Connect to conn's specified addr and port. If it worked, conn
|
|
|
|
* has now been added to the connection_array.
|
|
|
|
*
|
|
|
|
* Send back a connected cell. Include the resolved IP of the destination
|
|
|
|
* address, but <em>only</em> if it's a general exit stream. (Rendezvous
|
|
|
|
* streams must not reveal what IP they connected to.)
|
|
|
|
*/
|
2004-11-09 19:22:17 +01:00
|
|
|
void
|
|
|
|
connection_exit_connect(connection_t *conn) {
|
2003-11-14 21:45:47 +01:00
|
|
|
unsigned char connected_payload[4];
|
2004-10-17 03:57:34 +02:00
|
|
|
uint32_t addr;
|
|
|
|
uint16_t port;
|
2003-09-13 00:45:31 +02:00
|
|
|
|
2004-04-06 23:52:01 +02:00
|
|
|
if (!connection_edge_is_rendezvous_stream(conn) &&
|
2004-04-06 22:25:18 +02:00
|
|
|
router_compare_to_my_exit_policy(conn) == ADDR_POLICY_REJECTED) {
|
2003-09-13 00:45:31 +02:00
|
|
|
log_fn(LOG_INFO,"%s:%d failed exit policy. Closing.", conn->address, conn->port);
|
2004-05-12 23:12:33 +02:00
|
|
|
connection_edge_end(conn, END_STREAM_REASON_EXITPOLICY, conn->cpath_layer);
|
2004-05-06 13:08:04 +02:00
|
|
|
circuit_detach_stream(circuit_get_by_conn(conn), conn);
|
|
|
|
connection_free(conn);
|
2003-10-22 09:55:44 +02:00
|
|
|
return;
|
2003-09-13 00:45:31 +02:00
|
|
|
}
|
|
|
|
|
2004-10-17 03:57:34 +02:00
|
|
|
addr = conn->addr;
|
|
|
|
port = conn->port;
|
2004-11-09 19:22:17 +01:00
|
|
|
if (redirect_exit_list) {
|
|
|
|
SMARTLIST_FOREACH(redirect_exit_list, exit_redirect_t *, r,
|
2004-10-17 03:57:34 +02:00
|
|
|
{
|
|
|
|
if ((addr&r->mask)==(r->addr&r->mask) &&
|
|
|
|
(r->port_min <= port) && (port <= r->port_max)) {
|
|
|
|
struct in_addr in;
|
2004-10-19 19:46:06 +02:00
|
|
|
if (r->is_redirect) {
|
|
|
|
addr = r->addr_dest;
|
|
|
|
port = r->port_dest;
|
|
|
|
in.s_addr = htonl(addr);
|
|
|
|
log_fn(LOG_DEBUG, "Redirecting connection from %s:%d to %s:%d",
|
|
|
|
conn->address, conn->port, inet_ntoa(in), port);
|
|
|
|
}
|
2004-10-17 03:57:34 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
});
|
2004-11-09 19:22:17 +01:00
|
|
|
}
|
2004-10-17 03:57:34 +02:00
|
|
|
|
2004-04-15 01:52:29 +02:00
|
|
|
log_fn(LOG_DEBUG,"about to try connecting");
|
2004-11-28 10:05:49 +01:00
|
|
|
switch (connection_connect(conn, conn->address, addr, port)) {
|
2003-09-16 03:58:46 +02:00
|
|
|
case -1:
|
2004-05-12 23:12:33 +02:00
|
|
|
connection_edge_end(conn, END_STREAM_REASON_CONNECTFAILED, conn->cpath_layer);
|
2004-05-06 13:08:04 +02:00
|
|
|
circuit_detach_stream(circuit_get_by_conn(conn), conn);
|
2004-05-05 03:26:57 +02:00
|
|
|
connection_free(conn);
|
2003-10-22 09:55:44 +02:00
|
|
|
return;
|
2003-09-16 03:58:46 +02:00
|
|
|
case 0:
|
2003-09-13 00:45:31 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
conn->state = EXIT_CONN_STATE_OPEN;
|
2004-11-28 10:05:49 +01:00
|
|
|
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_watch_events(conn, POLLIN);
|
|
|
|
|
|
|
|
/* also, deliver a 'connected' cell back through the circuit. */
|
2004-11-28 10:05:49 +01:00
|
|
|
if (connection_edge_is_rendezvous_stream(conn)) { /* rendezvous stream */
|
2004-04-06 22:25:18 +02:00
|
|
|
/* don't send an address back! */
|
|
|
|
connection_edge_send_command(conn, circuit_get_by_conn(conn), RELAY_COMMAND_CONNECTED,
|
|
|
|
NULL, 0, conn->cpath_layer);
|
|
|
|
} else { /* normal stream */
|
2004-10-17 03:57:34 +02:00
|
|
|
/* This must be the original address, not the redirected address. */
|
2004-04-06 22:25:18 +02:00
|
|
|
*(uint32_t*)connected_payload = htonl(conn->addr);
|
|
|
|
connection_edge_send_command(conn, circuit_get_by_conn(conn), RELAY_COMMAND_CONNECTED,
|
|
|
|
connected_payload, 4, conn->cpath_layer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/** Return 1 if <b>conn</b> is a rendezvous stream, or 0 if
|
|
|
|
* it is a general stream.
|
|
|
|
*/
|
2004-04-06 23:52:01 +02:00
|
|
|
int connection_edge_is_rendezvous_stream(connection_t *conn) {
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn);
|
2004-11-28 10:05:49 +01:00
|
|
|
if (*conn->rend_query) /* XXX */
|
2004-04-06 23:52:01 +02:00
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/** Return 1 if router <b>exit</b> might allow stream <b>conn</b>
|
|
|
|
* to exit from it, or 0 if it definitely will not allow it.
|
|
|
|
* (We might be uncertain if conn's destination address has not yet been
|
|
|
|
* resolved.)
|
|
|
|
*/
|
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
|
|
|
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(conn);
|
|
|
|
tor_assert(conn->type == CONN_TYPE_AP);
|
|
|
|
tor_assert(conn->socks_request);
|
2004-11-29 09:34:54 +01:00
|
|
|
tor_assert(exit);
|
2003-11-17 02:20:35 +01:00
|
|
|
|
2003-12-03 10:50:02 +01:00
|
|
|
log_fn(LOG_DEBUG,"considering nickname %s, for address %s / port %d:",
|
|
|
|
exit->nickname, conn->socks_request->address,
|
|
|
|
conn->socks_request->port);
|
2004-11-29 09:34:54 +01:00
|
|
|
|
|
|
|
/* If a particular exit node has been requested for the new connection,
|
|
|
|
* make sure the exit node of the existing circuit matches exactly.
|
|
|
|
*/
|
|
|
|
if (conn->chosen_exit_name) {
|
|
|
|
if (router_get_by_nickname(conn->chosen_exit_name) != exit) {
|
|
|
|
/* doesn't match */
|
|
|
|
log_fn(LOG_DEBUG,"Requested node '%s', considering node '%s'. No.",
|
|
|
|
conn->chosen_exit_name, exit->nickname);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-17 20:13:09 +02:00
|
|
|
if (conn->socks_request->command == SOCKS_COMMAND_RESOLVE) {
|
2004-10-17 23:51:20 +02:00
|
|
|
/* 0.0.8 servers have buggy resolve support. */
|
2004-11-29 09:34:54 +01:00
|
|
|
if (!tor_version_as_new_as(exit->platform, "0.0.9pre1"))
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
addr = client_dns_lookup_entry(conn->socks_request->address);
|
|
|
|
if (router_compare_addr_to_addr_policy(addr, conn->socks_request->port,
|
|
|
|
exit->exit_policy) < 0)
|
|
|
|
return 0;
|
2004-06-17 20:13:09 +02:00
|
|
|
}
|
2004-07-21 05:16:24 +02:00
|
|
|
return 1;
|
2003-11-16 06:33:45 +01:00
|
|
|
}
|
|
|
|
|
2004-05-20 06:16:43 +02:00
|
|
|
/** A helper function for socks_policy_permits_address() below.
|
|
|
|
*
|
2004-11-06 06:18:11 +01:00
|
|
|
* Parse options->SocksPolicy in the same way that the exit policy
|
2004-05-20 06:16:43 +02:00
|
|
|
* is parsed, and put the processed version in &socks_policy.
|
|
|
|
* Ignore port specifiers.
|
|
|
|
*/
|
2004-11-12 20:39:13 +01:00
|
|
|
void
|
|
|
|
parse_socks_policy(void)
|
2004-05-20 04:42:50 +02:00
|
|
|
{
|
2004-11-12 20:39:13 +01:00
|
|
|
struct addr_policy_t *n;
|
2004-05-20 04:42:50 +02:00
|
|
|
if (socks_policy) {
|
2004-11-12 20:39:13 +01:00
|
|
|
addr_policy_free(socks_policy);
|
2004-05-20 04:42:50 +02:00
|
|
|
socks_policy = NULL;
|
|
|
|
}
|
2004-11-12 20:39:13 +01:00
|
|
|
config_parse_addr_policy(get_options()->SocksPolicy, &socks_policy);
|
2004-05-20 04:42:50 +02:00
|
|
|
/* ports aren't used. */
|
|
|
|
for (n=socks_policy; n; n = n->next) {
|
|
|
|
n->prt_min = 1;
|
|
|
|
n->prt_max = 65535;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-20 06:16:43 +02:00
|
|
|
/** Return 1 if <b>addr</b> is permitted to connect to our socks port,
|
|
|
|
* based on <b>socks_policy</b>. Else return 0.
|
|
|
|
*/
|
2004-05-20 04:42:50 +02:00
|
|
|
int socks_policy_permits_address(uint32_t addr)
|
|
|
|
{
|
|
|
|
int a;
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (!socks_policy) /* 'no socks policy' means 'accept' */
|
2004-08-06 12:12:55 +02:00
|
|
|
return 1;
|
2004-11-12 20:39:13 +01:00
|
|
|
a = router_compare_addr_to_addr_policy(addr, 1, socks_policy);
|
2004-05-20 04:42:50 +02:00
|
|
|
if (a==-1)
|
|
|
|
return 0;
|
|
|
|
else if (a==0)
|
|
|
|
return 1;
|
2004-05-20 06:16:43 +02:00
|
|
|
tor_assert(a==1);
|
|
|
|
log_fn(LOG_WARN, "Got unexpected 'maybe' answer from socks policy");
|
|
|
|
return 0;
|
2004-05-20 04:42:50 +02:00
|
|
|
}
|
|
|
|
|
2003-11-14 21:45:47 +01:00
|
|
|
/* ***** Client DNS code ***** */
|
|
|
|
|
|
|
|
/* XXX Perhaps this should get merged with the dns.c code somehow. */
|
2003-12-14 08:50:45 +01:00
|
|
|
/* XXX But we can't just merge them, because then nodes that act as
|
|
|
|
* both OR and OP could be attacked: people could rig the dns cache
|
|
|
|
* by answering funny things to stream begin requests, and later
|
|
|
|
* other clients would reuse those funny addr's. Hm.
|
|
|
|
*/
|
2004-05-10 06:42:22 +02:00
|
|
|
|
|
|
|
/** A client-side struct to remember the resolved IP (addr) for
|
|
|
|
* a given address. These structs make up a tree, with client_dns_map
|
|
|
|
* below as its root.
|
|
|
|
*/
|
2003-11-14 21:45:47 +01:00
|
|
|
struct client_dns_entry {
|
2004-05-10 12:27:54 +02:00
|
|
|
uint32_t addr; /**< The resolved IP of this entry. */
|
2004-05-10 06:42:22 +02:00
|
|
|
time_t expires; /**< At what second does addr expire? */
|
|
|
|
int n_failures; /**< How many times has this entry failed to resolve so far? */
|
2003-12-14 07:50:44 +01:00
|
|
|
};
|
2004-05-10 06:42:22 +02:00
|
|
|
|
|
|
|
/** How many elements are in the client dns cache currently? */
|
2003-11-14 21:45:47 +01:00
|
|
|
static int client_dns_size = 0;
|
2004-05-10 06:42:22 +02:00
|
|
|
/** The tree of client-side cached DNS resolves. */
|
2004-03-20 02:21:19 +01:00
|
|
|
static strmap_t *client_dns_map = NULL;
|
2003-11-14 21:45:47 +01:00
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/** Initialize client_dns_map and client_dns_size. */
|
2003-11-14 21:45:47 +01:00
|
|
|
void client_dns_init(void) {
|
2004-03-20 02:21:19 +01:00
|
|
|
client_dns_map = strmap_new();
|
2003-11-14 21:45:47 +01:00
|
|
|
client_dns_size = 0;
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/** Return the client_dns_entry that corresponds to <b>address</b>.
|
|
|
|
* If it's not there, allocate and return a new entry for <b>address</b>.
|
|
|
|
*/
|
2004-04-13 19:49:41 +02:00
|
|
|
static struct client_dns_entry *
|
|
|
|
_get_or_create_ent(const char *address)
|
|
|
|
{
|
|
|
|
struct client_dns_entry *ent;
|
|
|
|
ent = strmap_get_lc(client_dns_map,address);
|
|
|
|
if (!ent) {
|
|
|
|
ent = tor_malloc_zero(sizeof(struct client_dns_entry));
|
|
|
|
ent->expires = time(NULL)+MAX_DNS_ENTRY_AGE;
|
|
|
|
strmap_set_lc(client_dns_map,address,ent);
|
|
|
|
++client_dns_size;
|
|
|
|
}
|
|
|
|
return ent;
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/** Return the IP associated with <b>address</b>, if we know it
|
|
|
|
* and it's still fresh enough. Otherwise return 0.
|
|
|
|
*/
|
2004-05-13 09:24:49 +02:00
|
|
|
uint32_t client_dns_lookup_entry(const char *address)
|
2003-11-14 21:45:47 +01:00
|
|
|
{
|
|
|
|
struct client_dns_entry *ent;
|
|
|
|
struct in_addr in;
|
|
|
|
time_t now;
|
|
|
|
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(address);
|
2003-11-14 21:45:47 +01:00
|
|
|
|
2004-03-09 23:01:17 +01:00
|
|
|
if (tor_inet_aton(address, &in)) {
|
2003-12-16 06:33:11 +01:00
|
|
|
log_fn(LOG_DEBUG, "Using static address %s (%08lX)", address,
|
|
|
|
(unsigned long)ntohl(in.s_addr));
|
2003-11-17 08:37:45 +01:00
|
|
|
return ntohl(in.s_addr);
|
2003-11-14 21:45:47 +01:00
|
|
|
}
|
2004-03-20 02:21:19 +01:00
|
|
|
ent = strmap_get_lc(client_dns_map,address);
|
2004-04-13 20:44:42 +02:00
|
|
|
if (!ent || !ent->addr) {
|
2003-11-14 21:45:47 +01:00
|
|
|
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);
|
2004-03-20 02:21:19 +01:00
|
|
|
strmap_remove_lc(client_dns_map,address);
|
|
|
|
tor_free(ent);
|
2003-11-14 21:45:47 +01:00
|
|
|
--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;
|
|
|
|
}
|
|
|
|
}
|
2004-02-28 08:01:22 +01:00
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/** An attempt to resolve <b>address</b> failed at some OR.
|
|
|
|
* Increment the number of resolve failures we have on record
|
|
|
|
* for it, and then return that number.
|
|
|
|
*/
|
2004-05-13 09:24:49 +02:00
|
|
|
int client_dns_incr_failures(const char *address)
|
2004-04-13 19:49:41 +02:00
|
|
|
{
|
|
|
|
struct client_dns_entry *ent;
|
|
|
|
ent = _get_or_create_ent(address);
|
2004-05-06 13:08:04 +02:00
|
|
|
++ent->n_failures;
|
|
|
|
log_fn(LOG_DEBUG,"Address %s now has %d resolve failures.",
|
|
|
|
address, ent->n_failures);
|
|
|
|
return ent->n_failures;
|
2004-04-13 19:49:41 +02:00
|
|
|
}
|
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/** Record the fact that <b>address</b> resolved to <b>val</b>.
|
|
|
|
* We can now use this in subsequent streams in client_dns_lookup_entry(),
|
|
|
|
* so we can more correctly choose a router that will allow <b>address</b>
|
|
|
|
* to exit from him.
|
|
|
|
*/
|
2004-05-13 09:24:49 +02:00
|
|
|
void client_dns_set_entry(const char *address, uint32_t val)
|
2003-11-14 21:45:47 +01:00
|
|
|
{
|
|
|
|
struct client_dns_entry *ent;
|
|
|
|
struct in_addr in;
|
|
|
|
time_t now;
|
|
|
|
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(address);
|
|
|
|
tor_assert(val);
|
2003-11-14 21:45:47 +01:00
|
|
|
|
2004-03-09 23:01:17 +01:00
|
|
|
if (tor_inet_aton(address, &in))
|
2003-11-14 21:45:47 +01:00
|
|
|
return;
|
|
|
|
now = time(NULL);
|
2004-04-13 19:49:41 +02:00
|
|
|
ent = _get_or_create_ent(address);
|
|
|
|
in.s_addr = htonl(val);
|
|
|
|
log_fn(LOG_DEBUG, "Updating entry for address %s: %s", address,
|
|
|
|
inet_ntoa(in));
|
|
|
|
ent->addr = val;
|
|
|
|
ent->expires = now+MAX_DNS_ENTRY_AGE;
|
|
|
|
ent->n_failures = 0;
|
2003-11-14 21:45:47 +01:00
|
|
|
}
|
2003-11-16 06:33:45 +01:00
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/** A helper function for client_dns_clean() below. If ent is too old,
|
|
|
|
* then remove it from the tree and return NULL, else return ent.
|
|
|
|
*/
|
2004-03-20 02:21:19 +01:00
|
|
|
static void* _remove_if_expired(const char *addr,
|
|
|
|
struct client_dns_entry *ent,
|
|
|
|
time_t *nowp)
|
|
|
|
{
|
|
|
|
if (ent->expires < *nowp) {
|
|
|
|
--client_dns_size;
|
|
|
|
tor_free(ent);
|
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
return ent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:42:22 +02:00
|
|
|
/** Clean out entries from the client-side DNS cache that were
|
|
|
|
* resolved long enough ago that they are no longer valid.
|
|
|
|
*/
|
2003-11-16 22:49:52 +01:00
|
|
|
void client_dns_clean(void)
|
2003-11-14 21:45:47 +01:00
|
|
|
{
|
|
|
|
time_t now;
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (!client_dns_size)
|
2003-11-18 01:02:24 +01:00
|
|
|
return;
|
2003-11-14 21:45:47 +01:00
|
|
|
now = time(NULL);
|
2004-03-20 02:21:19 +01:00
|
|
|
strmap_foreach(client_dns_map, (strmap_foreach_fn)_remove_if_expired, &now);
|
2003-09-13 00:45:31 +02:00
|
|
|
}
|
|
|
|
|
2004-11-09 19:22:17 +01:00
|
|
|
/** Make connection redirection follow the provided list of
|
|
|
|
* exit_redirect_t */
|
|
|
|
void
|
|
|
|
set_exit_redirects(smartlist_t *lst)
|
|
|
|
{
|
|
|
|
if (redirect_exit_list) {
|
|
|
|
SMARTLIST_FOREACH(redirect_exit_list, exit_redirect_t *, p, tor_free(p));
|
|
|
|
smartlist_free(redirect_exit_list);
|
|
|
|
}
|
|
|
|
redirect_exit_list = lst;
|
|
|
|
}
|
|
|
|
|
2004-11-29 09:34:54 +01:00
|
|
|
/** If address is of the form "y.onion" with a well-formed handle y:
|
|
|
|
* Put a '\0' after y, lower-case it, and return 2.
|
|
|
|
*
|
|
|
|
* If address is of the form "y.exit":
|
|
|
|
* Put a '\0' after y and return 1.
|
|
|
|
*
|
|
|
|
* Otherwise:
|
|
|
|
* Return 0 and change nothing.
|
|
|
|
*/
|
|
|
|
int parse_address(char *address) {
|
|
|
|
char *s;
|
|
|
|
char query[REND_SERVICE_ID_LEN+1];
|
|
|
|
|
|
|
|
s = strrchr(address,'.');
|
|
|
|
if (!s) return 0; /* no dot, thus normal */
|
|
|
|
if (!strcasecmp(s+1,"exit")) {
|
|
|
|
*s = 0; /* null-terminate it */
|
|
|
|
return 1; /* .exit */
|
|
|
|
}
|
|
|
|
if (strcasecmp(s+1,"onion"))
|
|
|
|
return 0; /* neither .exit nor .onion, thus normal */
|
|
|
|
|
|
|
|
/* so it is .onion */
|
|
|
|
*s = 0; /* null-terminate it */
|
|
|
|
if (strlcpy(query, address, REND_SERVICE_ID_LEN+1) >= REND_SERVICE_ID_LEN+1)
|
|
|
|
goto failed;
|
|
|
|
tor_strlower(query);
|
|
|
|
if (rend_valid_service_id(query)) {
|
|
|
|
tor_strlower(address);
|
|
|
|
return 2; /* success */
|
|
|
|
}
|
|
|
|
failed:
|
|
|
|
/* otherwise, return to previous state and return 0 */
|
|
|
|
*s = '.';
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|